Package oracle.security.am.asdk
Class AccessClient
java.lang.Object
oracle.security.am.asdk.AccessClient
Implements AccessClient Class.
Implements methods that allow applications to initialize the Access Server API Client.
The initialization functions are used to:
- indicate the location of an Access Server API configuration file,
- initialize the Access Server API from the configuration file,
- get information from the Access Server API configuration.
The AccessClient class includes class methods to indicate the location of a properties configuration file, to initialize the Access Server API from the XML configuration file and to retrieve a value of a configuration item.
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
-
Method Summary
Modifier and TypeMethodDescriptionstatic AccessClient
Returns a reference to a Singleton object of AccessClient.static AccessClient
createDefaultInstance<wbr>(String configLocation)
Returns a reference to a Singleton object of AccessClient.static AccessClient
createDefaultInstance<wbr>(String configLocation, AccessClient.CompatibilityMode mode)
Returns a reference to a Singleton object of AccessClient.static AccessClient
createDefaultInstance<wbr>(Hashtable bootstrapConfig, AccessClient.CompatibilityMode mode, ConfigUpdateCallback confupdtcallbk)
Returns a reference to a Singleton object of AccessClient.static AccessClient
createDefaultInstance<wbr>(Hashtable bootstrapConfig, ConfigUpdateCallback confupdtcallbk)
Returns a reference to a Singleton object of AccessClient.static AccessClient
Returns a reference to a Singleton object of AccessClient.static AccessClient
createInstance<wbr>(String loggerName)
Returns a reference to a new object of AccessClient (using default OAM_11G compatibility mode).static AccessClient
createInstance<wbr>(String configLocation, String loggerName)
Returns a reference to a new object of AccessClient (using default OAM_11G compatibility mode).static AccessClient
createInstance<wbr>(String configLocation, String loggerName, AccessClient.CompatibilityMode mode)
Returns a reference to a new object of AccessClient.static AccessClient
createInstance<wbr>(String loggerName, AccessClient.CompatibilityMode mode)
Returns a reference to a new object of AccessClient.static AccessClient
createInstance<wbr>(Hashtable bootstrapConfig, String loggerName, AccessClient.CompatibilityMode mode, ConfigUpdateCallback confupdtcallbk)
Creates a new instance of AccessClient.static AccessClient
createInstance<wbr>(Hashtable bootstrapConfig, String loggerName, ConfigUpdateCallback confupdtcallbk)
Returns a reference to a new object of AccessClient (using default OAM_11G compatibility mode).final Hashtable
Returns the diagnostic information about the connectivity to OAM 10g servers including host, port, time since when the connection is established and the server state.Returns the difference or changes occurred in configurations after configuration update.Returns all the configuration settings from the configuration file before connecting to the server, or the configuration fetched from the serverstatic AccessClient
Returns a reference to the Singleton object of AccessClient; if already created.final Hashtable
Returns the directory diagnostic information from the OAM 10g servers about the Directory Servers used to store User, Policy, Config information.Returns Oracle Access Protocol version of the current AccessClient instance.oracle.security.am.common.nap.util.ObKeyValMap
getMapFromUserDefinedParamMapStr<wbr>(String usingKey)
This method can be used to get Map of parameters defined in "UserDefinedvals" Map which is here serialized as String.static String
Returns Oracle Access Protocol version of the default singleton object instance.static String
Returns the OAM Access SDK version number.final Hashtable
Returns the diagnostic information from the OAM 10g server containing server health, host, port, number of connections.boolean
Checks if AccessClient is initialized or not.void
shutdown()
It disconnects client from the OAM server.
-
Field Details
-
CFG_WEBGATE_ID
- See Also:
-
CFG_DEBUG_VALUE
- See Also:
-
CFG_TRANSPORT_SECURITY
- See Also:
-
CFG_ENCRYPTED_PASSWORD
- See Also:
-
CFG_PRIMARY_SERVER_LIST
- See Also:
-
CFG_SEC_SERVER_LIST
- See Also:
-
CFG_USER_DEF_VALS
- See Also:
-
CFG_PASSPHRASE
- See Also:
-
CFG_KEYSTORE
- See Also:
-
CFG_TRUSTSTORE
- See Also:
-
CFG_SERVER_HOST
- See Also:
-
CFG_SERVER_PORT
- See Also:
-
CFG_SERVER_MAX_CONNS
- See Also:
-
CFG_POOL_TIMEOUT
- See Also:
-
CFG_SERVER_CONNECTION_READ_TIMEOUT
- See Also:
-
CFG_TCP_CONNECT_TIMEOUT
- See Also:
-
-
Method Details
-
isInitialized
public boolean isInitialized()Checks if AccessClient is initialized or not.- Returns:
- Boolean true if AccessClient is initialized
-
createDefaultInstance
public static AccessClient createDefaultInstance<wbr>(AccessClient.CompatibilityMode mode) throws AccessExceptionReturns a reference to a Singleton object of AccessClient. Creates the singleton object if one does not already exist.
In addition, it also performs initialization required before any ASDK api can be used. For initialization, it searches for the configuration file in locations in the order given below:- OAM_ASDK_CONFIG_DIR java property can be provided that points to the directory location of the configuration file. It will use the configuration file available in the directory location pointed by this property. If the file is not found, it will throw AccessException. If this property is not set,it will fall back to the next option.
- Deprecated.OBACCESS_INSTALL_DIR environment variable can be defined, which points to the directory location of the configuration file. This option is supported for backward compatibility. If this environment variable is set, it will search for configuration file in sub directory structure. If file is not found, it will throw AccessException. If this environment variable is not set, it will fall back to the next option.
- ASDK Jar location, the location where ASDK jar is located.
- Parameters:
mode
- indicates the compatibility mode to be used by the AccessClient object.- Returns:
- A reference to the Singleton object of AccessClient.
- Throws:
AccessException
- In case of initialization failure.
-
createDefaultInstance
Returns a reference to a Singleton object of AccessClient. Creates the singleton object (using default OAM_11G compatibility mode) if one does not already exist.
In addition, it also performs initialization required before any ASDK api can be used. For initialization, it searches for the configuration file in locations in the order given below:- OAM_ASDK_CONFIG_DIR java property can be provided that points to the directory location of the configuration file. It will use the configuration file available in the directory location pointed by this property. If the file is not found, it will throw AccessException. If this property is not set,it will fall back to the next option.
- Deprecated.OBACCESS_INSTALL_DIR environment variable can be defined, which points to the directory location of the configuration file. This option is supported for backward compatibility. If this environment variable is set, it will search for configuration file in sub directory structure. If file is not found, it will throw AccessException. If this environment variable is not set, it will fall back to the next option.
- ASDK Jar location, the location where ASDK jar is located.
- Returns:
- A reference to the Singleton object of AccessClient.
- Throws:
AccessException
- In case of initialization failure.
-
createDefaultInstance
public static AccessClient createDefaultInstance<wbr>(String configLocation, AccessClient.CompatibilityMode mode) throws AccessExceptionReturns a reference to a Singleton object of AccessClient. Creates the singleton object if one does not already exist.
ConfigLocation is a directory location where configuration file will be searched first underneath and if not found, it searches in a OAM 10g JNI ASDK sub directory path.Deprecated. The OAM 10g JNI ASDK sub directory is searched for backward compatibility. If the configuration file is not found, it will throw AccessException.
If configLocation is null, it searches for the configuration file in locations in the order given below:- OAM_ASDK_CONFIG_DIR java property can be provided that points to the directory location of the configuration file. It will use the configuration file available in the directory location pointed by this property. If the file is not found, it will throw AccessException. If this property is not set,it will fall back to the next option.
- Deprecated.OBACCESS_INSTALL_DIR environment variable can be defined, which points to the directory location of the configuration file. This option is supported for backward compatibility. If this environment variable is set, it will search for configuration file in sub directory structure. If file is not found, it will throw AccessException. If this environment variable is not set, it will fall back to the next option.
- ASDK Jar location, the location where ASDK jar is located.
- Parameters:
configLocation
- indicates the directory location of configuration file used for initializing the singleton AccessClient object.mode
- indicates the compatibility mode to be used by the AccessClient object.- Returns:
- A reference to the Singleton object of AccessClient.
- Throws:
AccessException
- In case of initialization failure OR there is an reinitialization attempt detected by invoking with different configLocation.
-
createDefaultInstance
Returns a reference to a Singleton object of AccessClient. Creates the singleton object (using default OAM_11G compatibility mode) if one does not already exist.
ConfigLocation is a directory location where configuration file will be searched first underneath and if not found, it searches in a OAM 10g JNI ASDK sub directory path.Deprecated. The OAM 10g JNI ASDK sub directory is searched for backward compatibility. If the configuration file is not found, it will throw AccessException.
If configLocation is null, it searches for the configuration file in locations in the order given below:- OAM_ASDK_CONFIG_DIR java property can be provided that points to the directory location of the configuration file. It will use the configuration file available in the directory location pointed by this property. If the file is not found, it will throw AccessException. If this property is not set,it will fall back to the next option.
- Deprecated.OBACCESS_INSTALL_DIR environment variable can be defined, which points to the directory location of the configuration file. This option is supported for backward compatibility. If this environment variable is set, it will search for configuration file in sub directory structure. If file is not found, it will throw AccessException. If this environment variable is not set, it will fall back to the next option.
- ASDK Jar location, the location where ASDK jar is located.
- Parameters:
configLocation
- indicates the directory location of configuration file used for initializing the singleton AccessClient object.- Returns:
- A reference to the Singleton object of AccessClient.
- Throws:
AccessException
- In case of initialization failure OR there is an reinitialization attempt detected by invoking with different configLocation.
-
createDefaultInstance
public static AccessClient createDefaultInstance<wbr>(Hashtable bootstrapConfig, AccessClient.CompatibilityMode mode, ConfigUpdateCallback confupdtcallbk) throws AccessExceptionReturns a reference to a Singleton object of AccessClient. Creates the singleton object if one does not already exist.
Bootstrap Config consists of minimal configuration required for initializing the singleton AccessClient object.- Parameters:
bootstrapConfig
- hashtable containing configuration variables in form of key value pairs of String type. The possible key values are defined as constants in this class.mode
- indicates the compatibility mode to be used by the AccessClient object.confupdtcallbk
- object implementing the callback interface- Returns:
- A reference to the Singleton object of AccessClient.
- Throws:
AccessException
- In case of initialization failure OR there is an reinitialization attempt.
-
createDefaultInstance
public static AccessClient createDefaultInstance<wbr>(Hashtable bootstrapConfig, ConfigUpdateCallback confupdtcallbk) throws AccessExceptionReturns a reference to a Singleton object of AccessClient. Creates the singleton object (using default OAM_11G compatibility mode) if one does not already exist.
Bootstrap Config consists of minimal configuration required for initializing the singleton AccessClient object.- Parameters:
bootstrapConfig
- hashtable containing configuration variables in form of key value pairs of String type. The possible key values are defined as constants in this class.confupdtcallbk
- object implementing the callback interface- Returns:
- A reference to the Singleton object of AccessClient.
- Throws:
AccessException
- In case of initialization failure OR there is an reinitialization attempt.
-
getServerDiagnosticInfo
Returns the diagnostic information from the OAM 10g server containing server health, host, port, number of connections.- Returns:
- Hashtable containing server diagnostic information in name/value pairs of String type.
- Throws:
AccessException
- If OAM server fails to return the information
-
getDirectoryDiagnosticInfo
Returns the directory diagnostic information from the OAM 10g servers about the Directory Servers used to store User, Policy, Config information. The information includes host, port, bind credentials, search base.- Returns:
- Hashtable containing directory diagnostic information in name/value pairs of String type.
- Throws:
AccessException
- If OAM server fails to return the information
-
getClientDiagnosticInfo
Returns the diagnostic information about the connectivity to OAM 10g servers including host, port, time since when the connection is established and the server state.- Returns:
- Hashtable containing diagnostic information about the connectivity in name/value pairs of String type.
- Throws:
AccessException
- If diagnostic information cannot be fetched
-
createInstance
public static AccessClient createInstance<wbr>(String loggerName, AccessClient.CompatibilityMode mode) throws AccessExceptionReturns a reference to a new object of AccessClient.
In addition, it also performs initialization required before any ASDK api can be used. For initialization, it searches for the configuration file in locations in the order given below:- OAM_ASDK_CONFIG_DIR java property can be provided that points to the directory location of the configuration file. It will use the configuration file available in the directory location pointed by this property. If the file is not found, it will throw AccessException. If this property is not set,it will fall back to the next option.
- Deprecated.OBACCESS_INSTALL_DIR environment variable can be defined, which points to the directory location of the configuration file. This option is supported for backward compatibility. If this environment variable is set, it will search for configuration file in sub directory structure. If file is not found, it will throw AccessException. If this environment variable is not set, it will fall back to the next option.
- ASDK Jar location, the location where ASDK jar is located.
- Parameters:
loggerName
- indicates the name with which the Java Logger object would be created.mode
- indicates the compatibility mode to be used by the AccessClient object.- Returns:
- A reference to a new object of AccessClient.
- Throws:
AccessException
- In case of initialization failure.
-
createInstance
Returns a reference to a new object of AccessClient (using default OAM_11G compatibility mode).
In addition, it also performs initialization required before any ASDK api can be used. For initialization, it searches for the configuration file in locations in the order given below:- OAM_ASDK_CONFIG_DIR java property can be provided that points to the directory location of the configuration file. It will use the configuration file available in the directory location pointed by this property. If the file is not found, it will throw AccessException. If this property is not set,it will fall back to the next option.
- Deprecated.OBACCESS_INSTALL_DIR environment variable can be defined, which points to the directory location of the configuration file. This option is supported for backward compatibility. If this environment variable is set, it will search for configuration file in sub directory structure. If file is not found, it will throw AccessException. If this environment variable is not set, it will fall back to the next option.
- ASDK Jar location, the location where ASDK jar is located.
- Parameters:
loggerName
- indicates the name with which the Java Logger object would be created.- Returns:
- A reference to a new object of AccessClient.
- Throws:
AccessException
- In case of initialization failure.
-
createInstance
public static AccessClient createInstance<wbr>(String configLocation, String loggerName, AccessClient.CompatibilityMode mode) throws AccessExceptionReturns a reference to a new object of AccessClient.
ConfigLocation is a directory location where configuration file will be searched first underneath and if not found, it searches in a OAM 10g JNI ASDK sub directory path.Deprecated. The OAM 10g JNI ASDK sub directory is searched for backward compatibility.If the configuration file is not found, it will throw AccessException.
If configLocation is null, it searches for the configuration file in locations in the order given below:- OAM_ASDK_CONFIG_DIR java property can be provided that points to the directory location of the configuration file. It will use the configuration file available in the directory location pointed by this property. If the file is not found, it will throw AccessException. If this property is not set,it will fall back to the next option.
- Deprecated. OBACCESS_INSTALL_DIR environment variable can be defined, which points to the directory location of the configuration file. This option is supported for backward compatibility. If this environment variable is set, it will search for configuration file in sub directory structure. If file is not found, it will throw AccessException. If this environment variable is not set, it will fall back to the next option.
- ASDK Jar location, the location where ASDK jar is located.
- Parameters:
configLocation
- indicates the directory location of configuration file to be used while initializing the AccessClient object.loggerName
- indicates the name with which the Java Logger object would be created.mode
- indicates the compatibility mode to be used by the AccessClient object.- Returns:
- A reference to a new object of AccessClient.
- Throws:
AccessException
- In case of initialization failure.
-
createInstance
public static AccessClient createInstance<wbr>(String configLocation, String loggerName) throws AccessExceptionReturns a reference to a new object of AccessClient (using default OAM_11G compatibility mode).
ConfigLocation is a directory location where configuration file will be searched first underneath and if not found, it searches in a OAM 10g JNI ASDK sub directory path.Deprecated. The OAM 10g JNI ASDK sub directory is searched for backward compatibility.If the configuration file is not found, it will throw AccessException.
If configLocation is null, it searches for the configuration file in locations in the order given below:- OAM_ASDK_CONFIG_DIR java property can be provided that points to the directory location of the configuration file. It will use the configuration file available in the directory location pointed by this property. If the file is not found, it will throw AccessException. If this property is not set,it will fall back to the next option.
- Deprecated. OBACCESS_INSTALL_DIR environment variable can be defined, which points to the directory location of the configuration file. This option is supported for backward compatibility. If this environment variable is set, it will search for configuration file in sub directory structure. If file is not found, it will throw AccessException. If this environment variable is not set, it will fall back to the next option.
- ASDK Jar location, the location where ASDK jar is located.
- Parameters:
configLocation
- indicates the directory location of configuration file to be used while initializing the AccessClient object.loggerName
- indicates the name with which the Java Logger object would be created.- Returns:
- A reference to a new object of AccessClient.
- Throws:
AccessException
- In case of initialization failure.
-
createInstance
public static AccessClient createInstance<wbr>(Hashtable bootstrapConfig, String loggerName, AccessClient.CompatibilityMode mode, ConfigUpdateCallback confupdtcallbk) throws AccessExceptionCreates a new instance of AccessClient. This instance is created using the configuration specified by bootstrapConfig.- Parameters:
bootstrapConfig
- Hashtable containing configuration variables in form of key value pairs of String type. The possible key values are defined as constants in this class.mode
- indicates the compatibility mode to be used by the AccessClient object.loggerName
- indicates the name with which the Java Logger object would be created.confupdtcallbk
- object implementing the callback interface- Returns:
- A reference to a new object of AccessClient.
- Throws:
AccessException
- In case if bootstrapConfig is null or provided bootstrapConfig is incomplete
-
createInstance
public static AccessClient createInstance<wbr>(Hashtable bootstrapConfig, String loggerName, ConfigUpdateCallback confupdtcallbk) throws AccessExceptionReturns a reference to a new object of AccessClient (using default OAM_11G compatibility mode).
Bootstrap Config consists of minimal set of configuration required for initializing the AccessClient object.- Parameters:
bootstrapConfig
- Hashtable containing configuration variables in form of key value pairs of String type. The possible key values are defined as constants in this class.loggerName
- indicates the name with which the Java Logger object would be created.confupdtcallbk
- object implementing the callback interface- Returns:
- A reference to a new object of AccessClient.
- Throws:
AccessException
- In case if bootstrapConfig is null or provided bootstrapConfig is incomplete
-
getConfigurations
Returns all the configuration settings from the configuration file before connecting to the server, or the configuration fetched from the server- Returns:
- Hashtable containing the configuration vars in name/value pairs of String type.
- Throws:
AccessException
- If method is invoked before successful initialization
-
getMapFromUserDefinedParamMapStr
public oracle.security.am.common.nap.util.ObKeyValMap getMapFromUserDefinedParamMapStr<wbr>(String usingKey) throws AccessExceptionThis method can be used to get Map of parameters defined in "UserDefinedvals" Map which is here serialized as String. It parses this string to look for ObKeyValMap which are serialized as part of this. This method might fail if key passed is present with in format <Str_key>=<val> format directly in "UserDefinedvals" or if data inside do not represent proper ObKeyValMap format- Parameters:
usingKey
-- Returns:
- Throws:
AccessException
-
shutdown
public void shutdown()It disconnects client from the OAM server. -
getNAPVersion
Returns Oracle Access Protocol version of the default singleton object instance.- Returns:
- String representing Oracle Access Protocol version.
-
getInstanceNAPVersion
Returns Oracle Access Protocol version of the current AccessClient instance.- Returns:
- String representing Oracle Access Protocol version.
-
getSDKVersion
Returns the OAM Access SDK version number.- Returns:
- String representing OAM Access SDK version number.
-
getConfigDifference
Returns the difference or changes occurred in configurations after configuration update.- Returns:
- Hashtable representing changes occurred in configurations after configuration update.
-
getDefaultInstance
Returns a reference to the Singleton object of AccessClient; if already created.- Returns:
- A reference to the Singleton object of AccessClient; if already created.
- Throws:
AccessException
- In case if Singleton object of AccessClient is not created or Singleton AccessClient object initialization fails.
-