Class WSAuthMechOidCallbackImpl
java.lang.Object
com.ibm.websphere.security.auth.callback.WSAuthMechOidCallbackImpl
- All Implemented Interfaces:
Callback
The WSAuthMechOidCallbackImpl
gathers the authentication mechanism universal object identifiers (OID)
from the constructor and pass it to the login module. The following list contains the OIDs for each authentication mechanism:
- The Kerberos authentication mechanism OID is "1.2.840.113554.1.2.2"
- The LTPA authentication mechanism OID is "1.3.18.0.2.30.2"
- The BasicAuth(GSSUP) authentication mechanism OID is "2.23.130.1.1.1"
- Since:
- 1.0
-
Constructor Summary
ConstructorDescriptionWSAuthMechOidCallbackImpl
(String prompt) Construct aWSAuthMechOidCallbackImpl
object with a prompt hint.WSAuthMechOidCallbackImpl
(String prompt, String authMechOid) Construct aWSAuthMechOidCallbackImpl
object with a prompt hint and an authentication mechanism OID. -
Method Summary
Modifier and TypeMethodDescriptionReturn the authentication mechanism OID.Return the default realm name.Return the prompt.void
setAuthMechOid
(String authMechOid) Set the authentication mechanism OID.toString()
Returns the name of the Callback.
-
Constructor Details
-
WSAuthMechOidCallbackImpl
Construct a
WSAuthMechOidCallbackImpl
object with a prompt hint.- Parameters:
prompt
- The prompt hint.
-
WSAuthMechOidCallbackImpl
Construct a
WSAuthMechOidCallbackImpl
object with a prompt hint and an authentication mechanism OID.- Parameters:
prompt
- The prompt hint.authMechOid
- The authentication mechanism OID.
-
-
Method Details
-
setAuthMechOid
Set the authentication mechanism OID.
- Parameters:
authMechOid
- The authentication mechanism OID.
-
getAuthMechOid
Return the authentication mechanism OID.
- Returns:
- The authentication mechanism OID, could be
null
.
-
getdefaultAuthMechOid
Return the default realm name.
- Returns:
- The default authentication mechanism OID depend on resource, could be
null
.
-
getPrompt
Return the prompt. If the prompt set in Constructor is
null
, thennull
is returned.- Returns:
- The prompt, could be
null
.
-
toString
Returns the name of the Callback. Typically, it is the name of the class.
-