public interface IdentityAsserter
IdentityAsserter
interface exposes the methods that custom
Identity Assertion providers need to implement in order to provide token-based client
identity assertion. An Identity Assertion provider is a specific form of Authentication provider
that is used to establish a client's identity outside of the request.Modifier and Type | Field | Description |
---|---|---|
static java.lang.String |
AU_TYPE |
The
AuthenticatedUser token is an internal token and is only used when
communicating with a pre-7.0 WebLogic Server instance or when utilizing RMI over IIOP. |
static java.lang.String |
AUTHORIZATION_NEGOTIATE |
The
AUTHORIZATION_NEGOTIATE token is an internal token and is used when
a web app utilizes the SPNEGO protocol to authenticate via Active Directory. |
static java.lang.String |
CSI_ANONYMOUS_TYPE |
The
CSI.ITTAnonymous token is an internal token and is only used when
CSIV2 is being used for communication. |
static java.lang.String |
CSI_DISTINGUISHED_NAME_TYPE |
The
CSI.DistinguishedName token is an internal token and is only used when
CSIV2 is being used for communication. |
static java.lang.String |
CSI_PRINCIPAL_TYPE |
The
CSI.PrincipalName token is an internal token and is only used when
CSIV2 is being used for communication. |
static java.lang.String |
CSI_X509_CERTCHAIN_TYPE |
The
CSI.X509CertChain token is an internal token and is only used when
CSIV2 is being used for communication. |
static java.lang.String |
OIDC_TYPE |
The
OIDC_TYPE token is used to handle OpenID Connect passed in through
the HTTP header to the Servlet container. |
static java.lang.String |
OPENID_CONNECT_TOKEN_TYPE |
The
oidc_token token is a jwt token obtained via OIDC authentication. |
static java.lang.String |
WEBLOGIC_JWT_TOKEN_TYPE |
The
weblogic-jwt-token token is an internal token and is only used for internal apps
Only the WebLogic Identity Assertion provider should handle this token type. |
static java.lang.String |
WSSE_PASSWORD_DIGEST_TYPE |
The
wsse:PasswordDigest token is an internal token and is used
when a web service utilizes the wsse:UsernameToken with a password type of
wsse:PasswordDigest. |
static java.lang.String |
WWW_AUTHENTICATE_NEGOTIATE |
The
WWW-AUTHENTICATE_NEGOTIATE token is an internal token and is used
when a web app utilizes the SPNEGO (Simple and Protected GSS-API Negotiation Mechanism)
protocol for HTTP authentication. |
static java.lang.String |
X509_TYPE |
The
X.509 token is used to handle X.509 certificates passed in through
the HTTP header to the Servlet container. |
Modifier and Type | Method | Description |
---|---|---|
javax.security.auth.callback.CallbackHandler |
assertIdentity(java.lang.String type,
java.lang.Object token) |
Asserts an identity based on token identity information.
|
static final java.lang.String X509_TYPE
X.509
token is used to handle X.509 certificates passed in through
the HTTP header to the Servlet container.static final java.lang.String AU_TYPE
AuthenticatedUser
token is an internal token and is only used when
communicating with a pre-7.0 WebLogic Server instance or when utilizing RMI over IIOP.
Only the WebLogic Identity Assertion provider should handle this token type. Base64 encoding
is not relevant for this token type as it is never passed in via the Servlet container.static final java.lang.String WEBLOGIC_JWT_TOKEN_TYPE
weblogic-jwt-token
token is an internal token and is only used for internal apps
Only the WebLogic Identity Assertion provider should handle this token type. Base64 encoding
is not relevant for this token type as an exceptionstatic final java.lang.String CSI_PRINCIPAL_TYPE
CSI.PrincipalName
token is an internal token and is only used when
CSIV2 is being used for communication. (CSIv2 is the Common Secure Interoperability Protocol.)
Only the WebLogic Identity Assertion provider should handle this token type. Base64 encoding
is not relevant for this token type as it is never passed in via the Servlet container.static final java.lang.String CSI_ANONYMOUS_TYPE
CSI.ITTAnonymous
token is an internal token and is only used when
CSIV2 is being used for communication. (CSIv2 is the Common Secure Interoperability Protocol.)
Only the WebLogic Identity Assertion provider should handle this token type. Base64 encoding
is not relevant for this token type as it is never passed in via the Servlet container.static final java.lang.String CSI_X509_CERTCHAIN_TYPE
CSI.X509CertChain
token is an internal token and is only used when
CSIV2 is being used for communication. (CSIv2 is the Common Secure Interoperability Protocol.)
Only the WebLogic Identity Assertion provider should handle this token type. Base64 encoding
is not relevant for this token type as it is never passed in via the Servlet container.static final java.lang.String CSI_DISTINGUISHED_NAME_TYPE
CSI.DistinguishedName
token is an internal token and is only used when
CSIV2 is being used for communication. (CSIv2 is the Common Secure Interoperability Protocol.)
Only the WebLogic Identity Assertion provider should handle this token type. Base64 encoding
is not relevant for this token type as it is never passed in via the Servlet container.static final java.lang.String WSSE_PASSWORD_DIGEST_TYPE
wsse:PasswordDigest
token is an internal token and is used
when a web service utilizes the wsse:UsernameToken with a password type of
wsse:PasswordDigest. The web services container passes an object of type
weblogic.xml.security.UserInfo
when using this token type.
Base64 encoding is not relevant for this token type as it is never passed in via the
Servlet container.static final java.lang.String WWW_AUTHENTICATE_NEGOTIATE
WWW-AUTHENTICATE_NEGOTIATE
token is an internal token and is used
when a web app utilizes the SPNEGO (Simple and Protected GSS-API Negotiation Mechanism)
protocol for HTTP authentication. The servlet authentication filter requests the
initial challenge using this token type.
Base64 encoding is not relevant for this token type as it is passed in via the
Servlet authentication filter.static final java.lang.String AUTHORIZATION_NEGOTIATE
AUTHORIZATION_NEGOTIATE
token is an internal token and is used when
a web app utilizes the SPNEGO protocol to authenticate via Active Directory.
The servlet authentication filter passes an object of type byte[]
when using this token type.
Base64 encoding is not relevant for this token type as it is passed in via the
Servlet authentication filter.static final java.lang.String OIDC_TYPE
OIDC_TYPE
token is used to handle OpenID Connect passed in through
the HTTP header to the Servlet container.static final java.lang.String OPENID_CONNECT_TOKEN_TYPE
oidc_token
token is a jwt token obtained via OIDC authentication.
The WebLogic OIDC Identity Assertion provider should handle this token type. javax.security.auth.callback.CallbackHandler assertIdentity(java.lang.String type, java.lang.Object token) throws IdentityAssertionException
CallbackHandler
will be passed
to the LoginModules to perform principal mapping. A null CallbackHandler
instance signifies that the anonymous user should be used.
This method is called every time identity assertion occurs, but the LoginModules
may not be called if the Subject is cached. The -Dweblogic.security.identityAssertionTTL
flag can be used to affect this behavior (for example, to modify the default TTL of 5 minutes or
to disable the cache by setting the flag to -1).
It is the responsibility of the Identity Assertion provider to ensure not just that the token is valid, but also that the user is still valid (for example, the user has not been deleted).
type
- the type of token to use for identity assertiontoken
- the actual token to be used to assert identityCallbackHandler
related to the identity, or null
to signify the anonymous userIdentityAssertionException
- if the identity assertion fails.