Class RidcConnectionProvider
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected static RidcConnection
__internalGetConnection
(oracle.adf.share.ADFContext adfContext, String connectionName) Lookup from the ADF Connections Context the connection with the specified connection name and return it should it be an instance of an RIDC Connectionstatic void
dispose()
Dispose the RIDC connections registry object stored in the ADF Application scope.static RidcConnection
getConnection
(String connectionName) Obtain from registry of RidcConnection singletons, the RidcConnection with the specified name.protected static void
Initialize the RIDC Connection.static String[]
Lists all the RIDC connections in the current ADFContext.protected static void
setConnectionProperties
(RidcConnection conn, IdcClient client) Set the IdcClient's protocol configuration configuration properties.protected static void
setSessionPoolProperties
(RidcConnection conn, IdcClient client) Set the Session Pool configuration properties.protected static void
Performs a best-effort attempt at validating the RIDC Connection object's underlying properties.
-
Constructor Details
-
RidcConnectionProvider
public RidcConnectionProvider()
-
-
Method Details
-
getConnection
public static RidcConnection getConnection(String connectionName) throws NamingException, IdcClientException Obtain from registry of RidcConnection singletons, the RidcConnection with the specified name. The registry of connections (ConcurrentHashMap) is stored in the ADF Application Scope.Once a named connection is obtained for the first time and initialized, any subsequent changes to that connection by way of MBean operations will not take effect until either
- The application/server is restarted
- The connections map is disposed through the RidcConnectionProvider.dispose() method and any existing connection objects held by application code are nullified. Subsequent call to getConnection(..) would result in a fresh connection with latest available properties.
This method is thread-safe.
- Parameters:
connectionName
- The name of the RIDC ADF Connection- Returns:
- A singleton RidcConnection instance obtained from the registry for the specified connection name.
- Throws:
NamingException
IdcClientException
-
initializeConnection
Initialize the RIDC Connection.This involves ...
- best-attempt at validating the connection definition
- creating the IdcClientManager
- creating the IdcClient based on the connection url
- setting the appropriate connection properties on the IdcClient's associated config object
- Parameters:
conn
- The RIDC Connection to initialize- Throws:
IdcClientException
-
setConnectionProperties
Set the IdcClient's protocol configuration configuration properties.Called from initializeConnection(), this method works through the connection's properties and invokes the appropriate setters on the IdcClient's underlying protocol-specific configuration object.
- Parameters:
conn
- The RIDC Connection object to obtain properties fromclient
- The IdcClient instance to set properties on
-
setSessionPoolProperties
Set the Session Pool configuration properties.Called from initializeConnection(), this method ensures session pool support if required has suitable configuration
- Parameters:
conn
- The RIDC Connection objectclient
- The IdcClient instance
-
dispose
public static void dispose()Dispose the RIDC connections registry object stored in the ADF Application scope.Note
Any existing connection objects stored/held by application code must be released. Such connection objects are not automatically refreshed, nor are they marked dirty.
Any subsequent call to the getConnection(..) method will result in a fresh connection with latest available properties. -
listRidcConnections
Lists all the RIDC connections in the current ADFContext.- Returns:
- The list of content source names.
- Throws:
NamingException
- If an error occurs listing the connections.
-
validateConnectionDefinition
Performs a best-effort attempt at validating the RIDC Connection object's underlying properties.- Parameters:
conn
- The RIDC Connection object to validate properties from
-