public interface OpenIdResolver
OpenIdResolver.getIssuer()
) and
performs validation against a supplied SignedJwt
, throwing an
OpenIdConnectVerificationException
if there are any issues which do not
conform to the verification spec as per:
More details on how the verification should be completed can be found at
http://openid.net/specs/openid-authentication-2_0.html
OpenIdResolver.validateIdentity(org.forgerock.json.jose.jws.SignedJwt)
performs all individual checks.Modifier and Type | Field and Description |
---|---|
static String |
CLIENT_SECRET_KEY
Lookup key for the client secret.
|
static String |
ISSUER_KEY
Lookup key for the issuer's name.
|
static String |
JWK
Lookup key for JWK configuration.
|
static String |
KEY_ALIAS_KEY
Lookup key for a key stored in a keystore.
|
static String |
KEYSTORE_LOCATION_KEY
Lookup key for the location of a keystore.
|
static String |
KEYSTORE_PASS_KEY
Lookup key for the password to a keystore.
|
static String |
KEYSTORE_TYPE_KEY
Lookup key for the type of a keystore.
|
static String |
WELL_KNOWN_CONFIGURATION
Lookup key for a .well-known Open ID Connect config.
|
Modifier and Type | Method and Description |
---|---|
String |
getIssuer()
Returns the issuer (IdP) for which this resolver will resolve identities.
|
void |
validateIdentity(SignedJwt idClaim)
Validates the supplied Jwt against this OpenId Connect Idp.
|
static final String KEY_ALIAS_KEY
static final String ISSUER_KEY
static final String CLIENT_SECRET_KEY
static final String JWK
static final String WELL_KNOWN_CONFIGURATION
static final String KEYSTORE_LOCATION_KEY
static final String KEYSTORE_TYPE_KEY
static final String KEYSTORE_PASS_KEY
void validateIdentity(SignedJwt idClaim) throws OpenIdConnectVerificationException
idClaim
- The Jwt to test is authenticated from this issuerOpenIdConnectVerificationException
- If the Jwt is unable to be verifiedString getIssuer()
Copyright © 2010-2018, ForgeRock All Rights Reserved.