Package com.sun.identity.saml2.plugins
Interface SPAuthnContextMapper
-
@SupportedAll public interface SPAuthnContextMapper
The interfaceSPAuthnContextMapper.java
determines the Authentication Context to be set in the Authentication Request and the Auth Level of an Authentication Context. The implementation of this interface will be used to createRequestedAuthnContext
to set in theAuthnRequest
and the Authentication Level of an Authentication Context.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getAuthLevel(RequestedAuthnContext reqCtx, AuthnContext authContext, String realm, String hostEntityID, String idpEntityID)
Returns the Auth Level for theAuthContext
.RequestedAuthnContext
getRequestedAuthnContext(String realm, String hostEntityID, Map paramsMap)
Returns theRequestedAuthnContext
Object .boolean
isAuthnContextMatching(List requestedACClassRefs, String acClassRef, String comparison, String realm, String hostEntityID)
Returns true if the specified AuthnContextClassRef matches a list of requested AuthnContextClassRef.
-
-
-
Method Detail
-
getRequestedAuthnContext
RequestedAuthnContext getRequestedAuthnContext(String realm, String hostEntityID, Map paramsMap) throws SAML2Exception
Returns theRequestedAuthnContext
Object . This method is called during Single Sign On initiation at the Service Provider for determining theRequestedAuthnContext
to be set in theAuthRequest
before sending the request to the Identity Provider.- Parameters:
realm
- Organization or realm of the Service Provider.hostEntityID
- Entity Identifier of the Host.paramsMap
- Map containing key/value pairs of request parameters.- Returns:
- RequestedAuthnContext Object.
- Throws:
SAML2Exception
- if an error occurs.
-
getAuthLevel
int getAuthLevel(RequestedAuthnContext reqCtx, AuthnContext authContext, String realm, String hostEntityID, String idpEntityID) throws SAML2Exception
Returns the Auth Level for theAuthContext
. This method is called by the Service Provider to determine the authLevel of Identity Provider Authentication Context which will set in the SSOToken created for the user on successful authentication.- Parameters:
reqCtx
- theRequestedAuthContext
object.authContext
- theAuthContext
object.realm
- the organization or realm of the Service Provider.hostEntityID
- the Hosted Provider Entity ID.idpEntityID
- the Identity Provider Entity ID.- Returns:
- authlevel of the
AuthContext
. - Throws:
SAML2Exception
- if an error occurs.
-
isAuthnContextMatching
boolean isAuthnContextMatching(List requestedACClassRefs, String acClassRef, String comparison, String realm, String hostEntityID)
Returns true if the specified AuthnContextClassRef matches a list of requested AuthnContextClassRef.- Parameters:
requestedACClassRefs
- a list of requested AuthnContextClassRef'sacClassRef
- AuthnContextClassRefcomparison
- the type of comparisonrealm
- Realm or Organization of the Service Provider.hostEntityID
- Entity ID of the Service Provider.- Returns:
- true if the specified AuthnContextClassRef matches a list of requested AuthnContextClassRef
-
-