Class RidcConnectionImpl

java.lang.Object
oracle.wcc.ridc.adfca.RidcConnection
oracle.wcc.ridc.adfca.framework.RidcConnectionImpl
All Implemented Interfaces:
oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition

public class RidcConnectionImpl extends RidcConnection implements oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
  • Constructor Details

    • RidcConnectionImpl

      protected RidcConnectionImpl(oracle.adf.mbean.share.connection.wcc.WccConnection connection)
      Protected Constructor for Instantiating RidcConnectionImpl
      Parameters:
      connection - WebCenter Content Connection object
  • Method Details

    • getConnectionName

      public String getConnectionName()
      Gets the connection's name.
      Specified by:
      getConnectionName in class RidcConnection
      Returns:
      name of the connection
    • setIdcClient

      public void setIdcClient(IdcClient idcClient)
      Sets the IdcClient instance that got created based on this connection's properties; specifically connection URL.
      Parameters:
      idcClient - The IdcClient instance for this connection
    • getIdcClient

      public IdcClient getIdcClient()
      Gets the IdcClient instance for this connection.
      Specified by:
      getIdcClient in class RidcConnection
      Returns:
      IdcClient the IdcClient instance
    • setProtocol

      public void setProtocol(RidcConnection.Protocol protocol)
      Sets the connection's protocol type.
      Parameters:
      protocol - protocol type (intradoc / http / jaxws)
    • getProtocol

      public RidcConnection.Protocol getProtocol()
      Gets the connection's protocol type.
      Specified by:
      getProtocol in class RidcConnection
      Returns:
      protocol type (intradoc / http / jaxws)
    • isJaxwsConnection

      public boolean isJaxwsConnection()
      Returns true if the connection's protocol is JAX/WS
      Specified by:
      isJaxwsConnection in class RidcConnection
      Returns:
      true if leveraging the JAX/WS protocol
    • isHttpConnection

      public boolean isHttpConnection()
      Returns true if the connection's protocol is HTTP
      Specified by:
      isHttpConnection in class RidcConnection
      Returns:
      true if leveraging the HTTP protocol
    • isIntradocConnection

      public boolean isIntradocConnection()
      Returns true if the connection's protocol is Intradoc
      Specified by:
      isIntradocConnection in class RidcConnection
      Returns:
      true if leveraging the Intradoc protocol
    • logout

      public void logout(IdcContext userContext)
      Attempt to logout the session wrapped by the specified IdcContext instance.

      Note - Earlier versions of RIDC did not provide a logout method; To allow this connection architecture to potentially work with older RIDC api, we use a static initializer and reflection to determine if logout method is present. Only if the method is present do we invoke it.

      A logout may also be a NO-OP for certain RIDC connection protocols.

      Specified by:
      logout in class RidcConnection
      Parameters:
      userContext - The user context object
    • ping

      public DataBinder ping() throws IdcClientException
      Invoke an anonymous PING_SERVER call to the Content Server associated with this connection.
      Specified by:
      ping in class RidcConnection
      Returns:
      The response DataBinder
      Throws:
      IdcClientException
    • createImpersonationBinder

      public DataBinder createImpersonationBinder(String impersonatee, boolean sticky)
      Create a new DataBinder that is initialized with properties to support impersonation.

      Note - Impersonation is only available with specific versions of the Content Server

      Impersonation can be either per request, or sticky (survive the request).

      Per-request impersonation is likely the safest approach; The app should configure a pool of impersonator (person whom has privileges to impersonate another user) user contexts, and then when impersonation is required call this method to add the "RunAs" property in the request DataBinder with value set to the impersonatee (person being impersonated).

      Warning 1 - Be very careful with impersonation - particularly sticky impersonation;
      Should the session associated with an IdcContext expire, it is possible with certain RIDC protocols that the connection may be silently re-established using the actual impersonator user rather than the impersonatee intended. Subsequently, the request to UCM will go across using the impersonator user rather than the impersonatee (person being impersonated) which could have bad security consequences.

      Warning 2 - If the end-user is able to inject properties in to the DataBinder without sanitization, and sticky impersonation is active, a malicious end-user could supply the property "StickyImpersonation" with value "false" in a request, which would restore the connection back as the impersonator user.

      Specified by:
      createImpersonationBinder in class RidcConnection
      Parameters:
      impersonatee - The user whom will be impersonated
      sticky - set to true if impersonation should survive the request
      Returns:
      A DataBinder initialized with properties required for impersonation.
    • getAnonymousCredential

      public IdcContext getAnonymousCredential()
      Get a credential for the anonymous user.
      Specified by:
      getAnonymousCredential in class RidcConnection
      Returns:
      A user context object for the anonymous user
    • getCredential

      public IdcContext getCredential()
      Evaluates the credentials stored for this connection instance along with the protocol being leveraged and infers / returns the user context deemed most appropriate.

      Care should be taken when creating/updating a connection that only the appropriate credential properties are set, and the others set to null/None.

      *** If the connection has no credential properties set, an IllegalStateException will be thrown.

      Important Rules / Notes:

      Intradoc protocol
      Returns an IdcContext leveraging just the username connection prop

      HTTP Protocol
      Returns an IdcContext leveraging the username and password connection properties.

      JAX/WS Protocol
      Returns an IdcContext with AppIdClientCredentials should the credential.appidkey prop be non empty.
      ** Otherwise
      Returns an IdcContext leveraging the username and password connection properties if the password property is non-null with length > 0.
      ** Otherwise
      Returns an IdcContext leveraging the username connection prop.

      Specified by:
      getCredential in class RidcConnection
      Returns:
      A user context object based on the protocol and credential properties set for this connection
    • getCredentialForADFSecurityContextUser

      public IdcContext getCredentialForADFSecurityContextUser()
      Attempt to obtain for the user as seen by the ADF Security Context an appropriate user context object.

      If the ADF security context believes no user is authenticated, a null (IdcContext) object will be returned.

      See Important Rules / Notes outlined for the getCredential(String username) method;

      In particular understand that null will be returned if it is deemed the only way to support the request is to leverage identity impersonation and that identity impersonation has not been enabled or failed for the connection.

      Specified by:
      getCredentialForADFSecurityContextUser in class RidcConnection
      Returns:
      A user context object for the authenticated user seen by the ADF Security Context (if possible based on the connection definition). Null otherwise.
    • getCredentialForADFSecurityContextUser

      public IdcContext getCredentialForADFSecurityContextUser(boolean anonymousSupported)
      Attempt to obtain for the user as seen by the ADF Security Context an appropriate user context object.

      If the ADF security context believes no user is authenticated, an IdcContext object wrapping the anonymous credential will be returned should the anonymousSupported method property be set to true.

      See Important Rules / Notes outlined for the getCredential(String username) method;

      In particular understand that null will be returned if it is deemed the only way to support the request is to leverage identity impersonation and that identity impersonation has not been enabled or failed for the connection.

      Specified by:
      getCredentialForADFSecurityContextUser in class RidcConnection
      Parameters:
      anonymousSupported - whether to support returning of anonymous credentials for non-Authenticated users.
      Returns:
      when anonymousSupported is true, an anonymous credential will be returned if the ADF Security Context believes no user is authenticated. When an authenticated user is seen by the ADF Security Context, a best-effort attempt will be made to obtain a user context object for the user. null will be returned in all other cases.
    • getCredential

      public IdcContext getCredential(String username)
      Attempt to obtain for the specified username an appropriate user context object.

      Whether this can be achieved may depend on the connection properties such as protocol being leveraged, what credentials are set on the connection, whether identity impersonation is enabled etc.

      Method Rules:

      Throws IllegalArgumentException if the specified username is null or trimmed empty.

      Intradoc protocol
      Returns an IdcContext wrapping the specified username.
      Intradoc is a trusted protocol and requires no passwords, hence so long as the specified username is valid, and the server trusts the client's ip address, everything should work as expected.

      HTTP protocol
      Returns null if no credentials are set for the connection.
      ** Otherwise
      Returns an IdcContext associated with the connection should the specified username match the connection's stored username.
      ** Otherwise
      Returns null if identity impersonation has not been enabled.
      ** Otherwise
      If impersonation feature is enabled, the connection's username and password properties will be leveraged to obtain a user context credential that will deemed the impersonatorContext. This impersonatorContext credential along with the specified username (aka impersonatee) will be passed on to the getCredentialForImpersonatee() method and the user context obtained as a result returned. getCredentialForImpersonatee() will return a null user context if impersonation fails.

      JAX/WS protocol
      Returns an IdcContext wrapping the specified username should either no credentials be set for the connection, or only the username property be set. (This assumes client policy is SAML based and Identity Switch will be leveraged).
      ** Otherwise
      Returns an IdcContext associated with the connection should the specified username match the connection's stored username.
      ** Otherwise
      Returns null if identity impersonation has not been enabled.
      ** Otherwise
      If impersonation feature is enabled, the connection's appid key / or username and password properties will be leveraged to obtain a user context credential that will deemed the impersonatorContext. This impersonatorContext credential along with the specified username (aka impersonatee) will be passed on to the getCredentialForImpersonatee() method and the user context obtained as a result returned. getCredentialForImpersonatee() will return a null user context if impersonation fails.

      Important Notes:

      If impersonation will be leveraged to obtain the user context for the specified username, please take note of the Important Security Warnings found in the javadoc for the createImpersonationBinder(String impersonatee, boolean sticky) method;

      Impersonation in general requires:

      1. Destination UCM Server to be a suitable version that supports impersonation concept.
      2. UCM Server to have impersonation feature activated
      3. The Connection's stored credential to be that of a valid user / appidkey whom possesses the role configured/required for impersonation
      4. The connection to be configured with the impersonation property enabled

      JAX/WS Identity Switch info:
      In order to make a SAML connection to the UCM server leveraging a user not matching the authenticated subject, an identity switch SAML policy would ordinarily be required. Additionally, a special codesource permission grant of type oracle.wsm.security.WSIdentityPermission is required for the application on the on wsm-agent-core.jar. If the policy configured for the JAX/WS RIDC connection be it explicitly or by way of GPA does not set subject.precedence=false, identity switch will not function. By setting the protocol.jaxws.registeridentityswitchfilter property to true on the connection, a special filter that gets invoked before each JAX/WS request will override this property to ensure subject.precedence=false.

      Specified by:
      getCredential in class RidcConnection
      Parameters:
      username - the user for which an appropriate user context object is required.
      Returns:
      A user context object based on the protocol and credential properties set for this connection; or null if this was not possible.
    • getCredentialForImpersonatee

      public IdcContext getCredentialForImpersonatee(String impersonatee, IdcContext impersonatorContext)
      Leverages the specified impersonator user context to invoke a PING_SERVER call to the Content Server with impersonation properties set in the request DataBinder requesting sticky impersonation for the specified impersonatee.

      If the response binder obtained from the PING_SERVER has a dUser value matching that of the impersonatee supplied, then the impersonation is deemed successful and the impersonatorContext will be returned to the callee. This user context is now impersonating the impersonatee.

      Otherwise, if impersonation failed, the impersonatorContext is logged out and null is returned.

      See Important Security Warnings found in the javadoc for the createImpersonationBinder(String impersonatee, boolean sticky) method;

      Also note, this method will attempt impersonation regardless of whether the underlying connection has the impersonation property enabled!

      Specified by:
      getCredentialForImpersonatee in class RidcConnection
      Parameters:
      impersonatee - person being impersonated
      impersonatorContext - user context of person whom has privileges to impersonate another user.
      Returns:
      impersonatorContext now acting as the impersonatee if impersonation succeeded, otherwise null.
    • setPropConnectionProtocol

      public void setPropConnectionProtocol(String PropConnectionProtocol)
      Specified by:
      setPropConnectionProtocol in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropConnectionProtocol

      public String getPropConnectionProtocol()
      Specified by:
      getPropConnectionProtocol in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropConnectionUrl

      public void setPropConnectionUrl(String PropConnectionUrl)
      Specified by:
      setPropConnectionUrl in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropConnectionUrl

      public String getPropConnectionUrl()
      Specified by:
      getPropConnectionUrl in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropConnectionSocketTimeout

      public void setPropConnectionSocketTimeout(Integer PropConnectionSocketTimeout)
      Specified by:
      setPropConnectionSocketTimeout in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropConnectionSocketTimeout

      public Integer getPropConnectionSocketTimeout()
      Specified by:
      getPropConnectionSocketTimeout in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropConnectionPoolMethod

      public void setPropConnectionPoolMethod(String PropConnectionPoolMethod)
      Specified by:
      setPropConnectionPoolMethod in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropConnectionPoolMethod

      public String getPropConnectionPoolMethod()
      Specified by:
      getPropConnectionPoolMethod in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropConnectionPoolSize

      public void setPropConnectionPoolSize(Integer PropConnectionPoolSize)
      Specified by:
      setPropConnectionPoolSize in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropConnectionPoolSize

      public Integer getPropConnectionPoolSize()
      Specified by:
      getPropConnectionPoolSize in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropConnectionWaitTime

      public void setPropConnectionWaitTime(Integer PropConnectionWaitTime)
      Specified by:
      setPropConnectionWaitTime in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropConnectionWaitTime

      public Integer getPropConnectionWaitTime()
      Specified by:
      getPropConnectionWaitTime in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropCredentialUsername

      public void setPropCredentialUsername(String PropCredentialUsername)
      Specified by:
      setPropCredentialUsername in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropCredentialUsername

      public String getPropCredentialUsername()
      Specified by:
      getPropCredentialUsername in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropCredentialPassword

      public void setPropCredentialPassword(String PropCredentialPassword)
      Specified by:
      setPropCredentialPassword in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropCredentialPassword

      public char[] getPropCredentialPassword()
    • setPropCredentialAppIdKey

      public void setPropCredentialAppIdKey(String PropCredentialAppIdKey)
      Specified by:
      setPropCredentialAppIdKey in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropCredentialAppIdKey

      public String getPropCredentialAppIdKey()
      Specified by:
      getPropCredentialAppIdKey in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropCredentialImpersonationAllowed

      public void setPropCredentialImpersonationAllowed(Boolean PropCredentialImpersonationAllowed)
      Specified by:
      setPropCredentialImpersonationAllowed in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropCredentialImpersonationAllowed

      public Boolean getPropCredentialImpersonationAllowed()
      Specified by:
      getPropCredentialImpersonationAllowed in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolJaxWSStack

      public void setPropProtocolJaxWSStack(String PropProtocolJaxWSStack)
      Specified by:
      setPropProtocolJaxWSStack in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolJaxWSStack

      public String getPropProtocolJaxWSStack()
      Specified by:
      getPropProtocolJaxWSStack in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolJaxWSPolicy

      public void setPropProtocolJaxWSPolicy(String PropProtocolJaxWSPolicy)
      Specified by:
      setPropProtocolJaxWSPolicy in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolJaxWSPolicy

      public String getPropProtocolJaxWSPolicy()
      Specified by:
      getPropProtocolJaxWSPolicy in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolJaxWSJpsConfigFile

      public void setPropProtocolJaxWSJpsConfigFile(String PropProtocolJaxWSJpsConfigFile)
      Specified by:
      setPropProtocolJaxWSJpsConfigFile in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolJaxWSJpsConfigFile

      public String getPropProtocolJaxWSJpsConfigFile()
      Specified by:
      getPropProtocolJaxWSJpsConfigFile in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolJaxWSSkipStackOptimize

      public void setPropProtocolJaxWSSkipStackOptimize(Boolean PropProtocolJaxWSSkipStackOptimize)
      Specified by:
      setPropProtocolJaxWSSkipStackOptimize in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolJaxWSSkipStackOptimize

      public Boolean getPropProtocolJaxWSSkipStackOptimize()
      Specified by:
      getPropProtocolJaxWSSkipStackOptimize in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolJaxWSServerInsName

      public void setPropProtocolJaxWSServerInsName(String PropProtocolJaxWSServerInsName)
      Specified by:
      setPropProtocolJaxWSServerInsName in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolJaxWSServerInsName

      public String getPropProtocolJaxWSServerInsName()
      Specified by:
      getPropProtocolJaxWSServerInsName in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolJaxWSRegisterIdentitySwitchFilter

      public void setPropProtocolJaxWSRegisterIdentitySwitchFilter(Boolean PropProtocolJaxWSRegisterIdentitySwitchFilter)
      Specified by:
      setPropProtocolJaxWSRegisterIdentitySwitchFilter in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolJaxWSRegisterIdentitySwitchFilter

      public Boolean getPropProtocolJaxWSRegisterIdentitySwitchFilter()
      Specified by:
      getPropProtocolJaxWSRegisterIdentitySwitchFilter in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolHttpLibrary

      public void setPropProtocolHttpLibrary(String PropProtocolHttpLibrary)
      Specified by:
      setPropProtocolHttpLibrary in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolHttpLibrary

      public String getPropProtocolHttpLibrary()
      Specified by:
      getPropProtocolHttpLibrary in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolIdcsAlgorithm

      public void setPropProtocolIdcsAlgorithm(String PropProtocolIdcsAlgorithm)
      Specified by:
      setPropProtocolIdcsAlgorithm in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolIdcsAlgorithm

      public String getPropProtocolIdcsAlgorithm()
      Specified by:
      getPropProtocolIdcsAlgorithm in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolIdcsKeystoreFile

      public void setPropProtocolIdcsKeystoreFile(String PropProtocolIdcsKeystoreFile)
      Specified by:
      setPropProtocolIdcsKeystoreFile in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolIdcsKeystoreFile

      public String getPropProtocolIdcsKeystoreFile()
      Specified by:
      getPropProtocolIdcsKeystoreFile in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolIdcsKeystorePassword

      public void setPropProtocolIdcsKeystorePassword(String PropProtocolIdcsKeystorePassword)
      Specified by:
      setPropProtocolIdcsKeystorePassword in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolIdcsKeystorePassword

      public char[] getPropProtocolIdcsKeystorePassword()
    • setPropProtocolIdcsKeystoreAlias

      public void setPropProtocolIdcsKeystoreAlias(String PropProtocolIdcsKeystoreAlias)
      Specified by:
      setPropProtocolIdcsKeystoreAlias in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolIdcsKeystoreAlias

      public String getPropProtocolIdcsKeystoreAlias()
      Specified by:
      getPropProtocolIdcsKeystoreAlias in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolIdcsKeystoreAliasPassword

      public void setPropProtocolIdcsKeystoreAliasPassword(String PropProtocolIdcsKeystoreAliasPassword)
      Specified by:
      setPropProtocolIdcsKeystoreAliasPassword in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolIdcsKeystoreAliasPassword

      public char[] getPropProtocolIdcsKeystoreAliasPassword()
    • setPropProtocolIdcsTrustManagerFile

      public void setPropProtocolIdcsTrustManagerFile(String PropProtocolIdcsTrustManagerFile)
      Specified by:
      setPropProtocolIdcsTrustManagerFile in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolIdcsTrustManagerFile

      public String getPropProtocolIdcsTrustManagerFile()
      Specified by:
      getPropProtocolIdcsTrustManagerFile in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropProtocolIdcsTrustManagerPassword

      public void setPropProtocolIdcsTrustManagerPassword(String PropProtocolIdcsTrustManagerPassword)
      Specified by:
      setPropProtocolIdcsTrustManagerPassword in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropProtocolIdcsTrustManagerPassword

      public char[] getPropProtocolIdcsTrustManagerPassword()
    • setPropSessionPoolSupport

      public void setPropSessionPoolSupport(Boolean PropSessionPoolSupport)
      Specified by:
      setPropSessionPoolSupport in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropSessionPoolSupport

      public Boolean getPropSessionPoolSupport()
      Specified by:
      getPropSessionPoolSupport in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setPropSessionPoolAnonymousFallback

      public void setPropSessionPoolAnonymousFallback(Boolean PropSessionPoolAnonymousFallback)
      Specified by:
      setPropSessionPoolAnonymousFallback in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropSessionPoolAnonymousFallback

      public Boolean getPropSessionPoolAnonymousFallback()
      Description copied from class: RidcConnection
      Gets the session pool anonymous fallback property.
      Specified by:
      getPropSessionPoolAnonymousFallback in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
      Specified by:
      getPropSessionPoolAnonymousFallback in class RidcConnection
      Returns:
      whether the credentail provider class should fallback to returning an anonymous IdcContext instance in the event the connected user or appropriate cannot be determined.
    • setPropSessionPoolCredentialProviderClass

      public void setPropSessionPoolCredentialProviderClass(String PropSessionPoolCredentialProviderClass)
      Specified by:
      setPropSessionPoolCredentialProviderClass in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • getPropSessionPoolCredentialProviderClass

      public String getPropSessionPoolCredentialProviderClass()
      Specified by:
      getPropSessionPoolCredentialProviderClass in interface oracle.adf.mbean.share.connection.wcc.WccConnectionDefinition
    • setSessionPoolCredentialProviderClass

      public void setSessionPoolCredentialProviderClass(Class credProviderClass)
      Sets the The RidcCredentialProvider Class to utilize to generate the initial IdcContext for new RidcSession instances created within the ADF session-scoped Session Pool. This method will only be called should the session pool supported property be set to true.
      Parameters:
      credProviderClass - RidcCredentialProvider Class
    • getSessionPoolCredentialProviderClass

      public Class getSessionPoolCredentialProviderClass()
      Gets the RidcCredentialProvider Class to utilize to generate the initial IdcContext for new RidcSession instances created within the ADF session-scoped Session Pool. A return value of null indicates that the connection has not been configured with session pool support property set to true.
      Specified by:
      getSessionPoolCredentialProviderClass in class RidcConnection
      Returns:
      RidcCredentialProvider Class