Class WSManagedConnectionFactoryCallback
- java.lang.Object
-
- com.ibm.wsspi.security.auth.callback.WSManagedConnectionFactoryCallback
-
- All Implemented Interfaces:
javax.security.auth.callback.Callback
public class WSManagedConnectionFactoryCallback extends java.lang.Object implements javax.security.auth.callback.Callback
The
WSManagedConnectionFactoryCallback
allows a reference of the targetManagedConnectionFactory
to be collected byWSMapingCallbackHandler
and pass it to theWSPrincipalMappingLoginModule
.
-
-
Constructor Summary
Constructors Constructor Description WSManagedConnectionFactoryCallback(java.lang.String hint)
Construct aWSManagedConnectionFactoryCallback
object with a usage hint.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.resource.spi.ManagedConnectionFactory
getManagedConnectionFacotry()
Return the ManagedConnectionFactory.void
setManagedConnectionFactory(jakarta.resource.spi.ManagedConnectionFactory managedConnectionFactory)
Set the ManagedConnectionFactory reference.
-
-
-
Method Detail
-
setManagedConnectionFactory
public void setManagedConnectionFactory(jakarta.resource.spi.ManagedConnectionFactory managedConnectionFactory)
Set the ManagedConnectionFactory reference.
- Parameters:
managedConnectionFactory
- The ManagedConnectionFactory.
-
getManagedConnectionFacotry
public jakarta.resource.spi.ManagedConnectionFactory getManagedConnectionFacotry()
Return the ManagedConnectionFactory.
- Returns:
- The ManagedConnectionFactory.
-
-