Searched defs:OAuth2Jwt (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DOAuth2Jwt.java34 public class OAuth2Jwt { class
41 * Creates an {@code OAuth2Jwt} instance from the provided JWT string.
44 * @return An {@code OAuth2Jwt} instance.
46 public static OAuth2Jwt create(String jwtString) {
47 return new OAuth2Jwt(JWT_PARSER.reconstructJwt(jwtString, SignedJwt.class), TimeService.SYSTEM);
55 OAuth2Jwt(SignedJwt jwt, TimeService timeService) { method in class:OAuth2Jwt
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DOAuth2Jwt.java35 public class OAuth2Jwt { class
42 * Creates an {@code OAuth2Jwt} instance from the provided JWT string.
45 * @return An {@code OAuth2Jwt} instance.
47 public static OAuth2Jwt create(String jwtString) {
48 return new OAuth2Jwt(JWT_PARSER.reconstructJwt(jwtString, SignedJwt.class), TimeService.SYSTEM);
56 OAuth2Jwt(SignedJwt jwt, TimeService timeService) { method in class:OAuth2Jwt

Completed in 27 milliseconds