- getAlgorithm() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the cryptographic algorithm used to secure the JWS.
- getAudience() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the intended audience for this JWT token.
- getAudiences() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns multiple intended audience for this JWT token.
- getClaimParameter(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the value of the JWT claim.
- getClaimParameters() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the map of the name/value pair of the JWT claim segment.
- getContentType() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the content type
- getCriticalHeader() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the ctrical header list.
- getExpiryTime() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the expiration time of the JWT token.
- getHeaderParameter(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the value of the JWT header.
- getHeaderParameters() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the map of the name/value pair of the JWT header segment.
- getIssuer() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the issuer of the JWT token.
- getIssueTime() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the issue time of the JWT token.
- getJsonKeyURL() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the URL that points to JSON-encoded public keys that can be used to validate the signature.
- getJwtID() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the unique ID of the JWT token.
- getKeyID() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the key id.
- getPrincipal() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the principal of the JWT token.
- getSubject() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the subject of the JWT token.
- getType() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the type of the JWT token.
- getX509CertificateChain() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns certificate chain which can be used to validate the JWT signature.
- getX509CertThumbprint() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the Base64url encoded SHA-1 thumbprint of the X.509 certificate, which can be used to validate the JWT signature.
- getX509URL() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the URL pointing to the X.509 public key certificate or certificate chain that can be used to validate the signature.
- serializeUnsigned() - Method in class oracle.security.restsec.jwt.JwtToken
-
This method is used to get the Base64url representation of the JWT token without any digital signature.
- setAlgorithm(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets cryptographic algorithm used to secure the JWS.
- setAudience(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the aud
claim in the JWT claim segment.
- setAudiences(String[]) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the aud
claim in the JWT claim segment.
- setClaimParameter(String, Object) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method is used to set the custom claims in the JWT claim segment.
- setContentType(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the cty
header parameter in the JWT header segment.
- setCritical(String[]) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the crit
header parameter in the JWT header segment.
- setExpiryTime(Date) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the exp
claim in the JWT claim segment.
- setHeaderParameter(String, Object) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method is used to set the custom claims in the JWT header segment.
- setIssuer(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the iss
claim in the JWT claim segment.
- setIssueTime(Date) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the iat
claim in the JWT claim segment.
- setJsonKeyURL(URL) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the jku
header parameter in the JWT header segment.
- setJwtID(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the jti
claim in the JWT claim segment.
- setKeyID(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the kid
header parameter in the JWT header segment.
- setPrincipal(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the prn
claim in the JWT claim segment.
- setSubject(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the sub
claim in the JWT claim segment.
- setType(String) - Method in class oracle.security.restsec.jwt.JwtToken
-
The value of the header parameter typ
is case sensitive and optional, and if present the recommended values are either "JWT" or "http://openid.net/specs/jwt/1.0".
- setX509CertificateChain(String[]) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the x5c
header parameter in the JWT header segment.
- setX509CertThumbprint(X509Certificate) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the x5t
header parameter in the JWT header segment.
- setX509URL(URL) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method sets the x5u
header parameter in the JWT header segment.
- signAndSerialize(byte[]) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the Base64url representation of the JWT token including the Crypto segment.
- signAndSerialize(PrivateKey) - Method in class oracle.security.restsec.jwt.JwtToken
-
This method returns the Base64url representation of the JWT token including the Crypto segment.
- SigningException - Exception in oracle.security.restsec.jwt
-
- SigningException() - Constructor for exception oracle.security.restsec.jwt.SigningException
-
- SigningException(String) - Constructor for exception oracle.security.restsec.jwt.SigningException
-
- SigningException(Throwable) - Constructor for exception oracle.security.restsec.jwt.SigningException
-
- SigningException(String, Throwable) - Constructor for exception oracle.security.restsec.jwt.SigningException
-