Class CustomJWTSSOProvider
java.lang.Object
org.apache.syncope.fit.core.reference.CustomJWTSSOProvider
- All Implemented Interfaces:
com.nimbusds.jose.jca.JCAAware<com.nimbusds.jose.jca.JCAContext>
,com.nimbusds.jose.JOSEProvider
,com.nimbusds.jose.JWSProvider
,com.nimbusds.jose.JWSVerifier
,JWTSSOProvider
Custom implementation for internal JWT validation.
-
Field Summary
-
Constructor Summary
ConstructorDescriptionCustomJWTSSOProvider
(AnySearchDAO anySearchDAO, AuthDataAccessor authDataAccessor) -
Method Summary
Modifier and TypeMethodDescriptionGives the identifier for the JWT issuer verified by this instance.com.nimbusds.jose.jca.JCAContext
resolve
(com.nimbusds.jwt.JWTClaimsSet jwtClaims) Attempts to resolve the given JWT claims into internalUser
and authorities.Set
<com.nimbusds.jose.JWSAlgorithm> boolean
verify
(com.nimbusds.jose.JWSHeader header, byte[] signingInput, com.nimbusds.jose.util.Base64URL signature)
-
Field Details
-
ISSUER
- See Also:
-
CUSTOM_KEY
- See Also:
-
-
Constructor Details
-
CustomJWTSSOProvider
public CustomJWTSSOProvider(AnySearchDAO anySearchDAO, AuthDataAccessor authDataAccessor) throws com.nimbusds.jose.JOSEException - Throws:
com.nimbusds.jose.JOSEException
-
-
Method Details
-
getIssuer
Description copied from interface:JWTSSOProvider
Gives the identifier for the JWT issuer verified by this instance.- Specified by:
getIssuer
in interfaceJWTSSOProvider
- Returns:
- identifier for the JWT issuer verified by this instance
-
supportedJWSAlgorithms
- Specified by:
supportedJWSAlgorithms
in interfacecom.nimbusds.jose.JWSProvider
-
getJCAContext
public com.nimbusds.jose.jca.JCAContext getJCAContext()- Specified by:
getJCAContext
in interfacecom.nimbusds.jose.jca.JCAAware<com.nimbusds.jose.jca.JCAContext>
-
verify
public boolean verify(com.nimbusds.jose.JWSHeader header, byte[] signingInput, com.nimbusds.jose.util.Base64URL signature) throws com.nimbusds.jose.JOSEException - Specified by:
verify
in interfacecom.nimbusds.jose.JWSVerifier
- Throws:
com.nimbusds.jose.JOSEException
-
resolve
@Transactional(readOnly=true) public Pair<User,Set<SyncopeGrantedAuthority>> resolve(com.nimbusds.jwt.JWTClaimsSet jwtClaims) Description copied from interface:JWTSSOProvider
Attempts to resolve the given JWT claims into internalUser
and authorities. IMPORTANT: this is not invoked for theadmin
super-user.- Specified by:
resolve
in interfaceJWTSSOProvider
- Parameters:
jwtClaims
- JWT claims- Returns:
- internal User, with authorities, matching the provided JWT claims, if found; otherwise null
-