Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jboss.naming.client.* (1)org.jboss.naming.client.java.* (1)org.jboss.naming.interceptors.* (1)
org.jboss.naming.java.* (1)

org.jboss.naming: Javadoc index of package org.jboss.naming.


Package Samples:

org.jboss.naming.java: Package description goes here .  
org.jboss.naming.client.java
org.jboss.naming.interceptors

Classes:

NonSerializableFactory: A utility class that allows one to bind a non-serializable object into a local JNDI context. The binding will only be valid for the lifetime of the VM in which the JNDI InitialContext lives. An example usage code snippet is: // The non-Serializable object to bind Object nonserializable = ...; // An arbitrary key to use in the StringRefAddr. The best key is the jndi // name that the object will be bound under. String key = ...; // This places nonserializable into the NonSerializableFactory hashmap under key NonSerializableFactory.rebind(key, nonserializable); Context ctx = new InitialContext(); ...
BridgeNamingContextFactory: A naming provider InitialContextFactory implementation that combines two Naming services to allow for delegation of lookups from one to the other. The default naming service is specified via the standard Context.PROVIDER_URL property while the secondary service is specified using an org.jboss.naming.provider.url2 property. An example of where this would be used is to bridge between the local JNDI service and the HAJNDI service. Lookups into the local JNDI service that fail would then try the HAJNDI service.
NamingContextFactory: A variation of the org.jnp.interfaces.NamingContextFactory InitialContextFactory implementation that maintains the last envrionment used to create an InitialContext in a thread local variable for access within the scope of the InitialContext. This can be used by the EJB handles to save the context that should be used to perform the looks when the handle is restored.
ExternalContext: A MBean that binds an arbitrary InitialContext into the JBoss default InitialContext as a Reference. If RemoteAccess is enabled, the reference is a Serializable object that is capable of creating the InitialContext remotely. If RemoteAccess if false, the reference is to a nonserializable object that can only be used from within this VM.
javaURLContextFactory: The external client java URL context factory. This is used in conjunction with j2ee application clients to implement the java:comp/env enterprise naming context (ENC).
NamingAlias: A simple utility mbean that allows one to create an alias in the form of a LinkRef from one JNDI name to another.
ENCFactory: Implementation of "java:comp" namespace factory. The context is associated with the thread class loader.
HttpNamingContextFactory: A naming provider InitialContextFactory implementation that obtains a Naming proxy from an HTTP URL.
JNDIView: A simple utlity mbean that allows one to recursively list the default JBoss InitialContext.
ExceptionInterceptor: A client interceptor that handles the wrapping of exceptions to NamingExceptions
javaURLContextFactory: Implementation of "java:" namespace factory. java: is a VM-local namespace.
Util: A static utility class for common JNDI operations.
NamingService: A JBoss service that starts the jnp JNDI server.
ENCThreadLocalKey: Return a LinkRef based on a ThreadLocal key.

Home | Contact Us | Privacy Policy | Terms of Service