public class InitialContextFactory
extends java.lang.Object
| Constructor and Description |
|---|
InitialContextFactory() |
| Modifier and Type | Method and Description |
|---|---|
static void |
close()
clear all the InitialContext objects.
|
static javax.naming.Context |
getContext(boolean useProps,
java.lang.String initialContextFactory,
java.lang.String providerUrl,
boolean useAuth,
java.lang.String securityPrincipal,
java.lang.String securityCredentials)
Initialize the JNDI initial context
|
static javax.naming.Context |
lookupContext(java.lang.String initialContextFactory,
java.lang.String providerUrl,
boolean useAuth,
java.lang.String securityPrincipal,
java.lang.String securityCredentials)
Look up the context from the local cache, creating it if necessary.
|
public static javax.naming.Context lookupContext(java.lang.String initialContextFactory,
java.lang.String providerUrl,
boolean useAuth,
java.lang.String securityPrincipal,
java.lang.String securityCredentials)
throws javax.naming.NamingException
initialContextFactory - used to set the property Context.INITIAL_CONTEXT_FACTORYproviderUrl - used to set the property Context.PROVIDER_URLuseAuth - set true if security is to be used.securityPrincipal - used to set the property Context.SECURITY_PRINCIPALsecurityCredentials - used to set the property Context.SECURITY_CREDENTIALSnulljavax.naming.NamingException - when creation of the context failspublic static javax.naming.Context getContext(boolean useProps,
java.lang.String initialContextFactory,
java.lang.String providerUrl,
boolean useAuth,
java.lang.String securityPrincipal,
java.lang.String securityCredentials)
throws javax.naming.NamingException
useProps - if true, create a new InitialContext; otherwise use the other
parameters to call
lookupContext(String, String, boolean, String, String)initialContextFactory - name of the initial context factory (ignored if
useProps is true)providerUrl - url of the provider to use (ignored if useProps
is true)useAuth - true if auth should be used, false
otherwise (ignored if useProps is
true)securityPrincipal - name of the principal to (ignored if useProps is
true)securityCredentials - credentials for the principal (ignored if
useProps is true)nulljavax.naming.NamingException - when creation of the context failspublic static void close()
Copyright © 1998-2018 Apache Software Foundation. All Rights Reserved.