org.apache.naming.core |
|
Java Source File Name | Type | Comment |
BaseContext.java | Class | Base Context implementation. |
BaseDirContext.java | Class | Base Directory Context implementation. |
BaseNaming.java | Class | This is the base class for our naming operations, for easy reading.
Creating a new context:
- Create a new class, extending BaseContext or BaseDirContext ( second
if you want to support attributes ).
- Add setters for configuration.
|
ContextAccessController.java | Class | Handles the access control on the JNDI contexts. |
DirContextHelper.java | Class | Utility class providing additional operations on DirContexts. |
JndiPermission.java | Class | Java SecurityManager Permission class for JNDI name based file resources
The JndiPermission extends the BasicPermission.
The permission name is a full or partial jndi resource name.
An * can be used at the end of the name to match all named
resources that start with name. |
NameParserImpl.java | Class | Parses names. |
NamingContextEnumeration.java | Class | Naming enumeration implementation. |
NamingEntry.java | Class | Represents a binding in a NamingContext. |
ServerAttribute.java | Class | Extended version for Attribute. |
ServerAttributes.java | Class | Extended version for Attribute. |
ServerBinding.java | Class | This is used for both NameClass and Binding.
Lazy eval - so the extra methods in Binding don't affect us.
For most contexts we'll deal getting the class name is as expensive
as getting the object. |
ServerName.java | Class | Implementation of Name with support for extra information.
An extra feature ( not yet implemneted ) is the support for
MessageBytes. |