Package io.jans.as.server.model.token
Class IdTokenFactory
- java.lang.Object
- 
- io.jans.as.server.model.token.IdTokenFactory
 
- 
 @ApplicationScoped @Named public class IdTokenFactory extends java.lang.ObjectJSON Web Token (JWT) is a compact token format intended for space constrained environments such as HTTP Authorization headers and URI query parameters. JWTs encode claims to be transmitted as a JSON object (as defined in RFC 4627) that is base64url encoded and digitally signed. Signing is accomplished using a JSON Web Signature (JWS). JWTs may also be optionally encrypted using JSON Web Encryption (JWE).- Version:
- 12 Feb, 2020
- Author:
- Javier Rojas Blum, Yuriy Movchan, Yuriy Zabrovarnyy
 
- 
- 
Constructor SummaryConstructors Constructor Description IdTokenFactory()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description io.jans.as.model.token.JsonWebResponsecreateJwr(IAuthorizationGrant grant, AuthorizationCode authorizationCode, AccessToken accessToken, RefreshToken refreshToken, ExecutionContext executionContext)
 
- 
- 
- 
Method Detail- 
createJwrpublic io.jans.as.model.token.JsonWebResponse createJwr(IAuthorizationGrant grant, AuthorizationCode authorizationCode, AccessToken accessToken, RefreshToken refreshToken, ExecutionContext executionContext) throws java.lang.Exception - Throws:
- java.lang.Exception
 
 
- 
 
-