Interface NamingResources
- 
- All Known Implementing Classes:
- NamingResourcesImpl
 
 public interface NamingResourcesDefines an interface for the object that is added to the representation of a JNDI resource in web.xml to enable it to also be the implementation of that JNDI resource. Only Catalina implements this interface but because the web.xml representation is shared this interface has to be visible to Catalina and Jasper.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddEnvironment(ContextEnvironment ce)voidaddResource(ContextResource cr)voidaddResourceLink(ContextResourceLink crl)java.lang.ObjectgetContainer()voidremoveEnvironment(java.lang.String name)voidremoveResource(java.lang.String name)voidremoveResourceLink(java.lang.String name)
 
- 
- 
- 
Method Detail- 
addEnvironmentvoid addEnvironment(ContextEnvironment ce) 
 - 
removeEnvironmentvoid removeEnvironment(java.lang.String name) 
 - 
addResourcevoid addResource(ContextResource cr) 
 - 
removeResourcevoid removeResource(java.lang.String name) 
 - 
addResourceLinkvoid addResourceLink(ContextResourceLink crl) 
 - 
removeResourceLinkvoid removeResourceLink(java.lang.String name) 
 - 
getContainerjava.lang.Object getContainer() 
 
- 
 
-