Class AuthorizationResponseVO
java.lang.Object
com.skava.core.validation.OutputModel
com.skava.auth.model.rest.entities.AuthorizationResponseVO
- All Implemented Interfaces:
Serializable
public class AuthorizationResponseVO
extends com.skava.core.validation.OutputModel
Data transfer class contains the client authorization request.
- Author:
- Infosys Equinox
- See Also:
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
AuthorizationResponseVO
public AuthorizationResponseVO(String tokenType, String idToken, String token, String code, String state, String redirectUri) - Parameters:
tokenType
- aString
object. which holds the type of the token required after client authorization.idToken
- aString
object. which holds the id_token for client application.token
- aString
object. which holds the session token for client application.code
- aString
object. which holds the auth code for client application.state
- aString
object. which holds the state provided in the client application request.redirectUri
- aString
object. which holds the valid redirect URI authorized to navigate.
-