Class AuthorizationRequestVO
java.lang.Object
com.skava.core.validation.InputModel
com.skava.auth.model.rest.entities.AuthorizationRequestVO
- All Implemented Interfaces:
Serializable
public class AuthorizationRequestVO
extends com.skava.core.validation.InputModel
Data transfer class contains the client authorization request.
- Author:
- Infosys Equinox
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAuthorizationRequestVO
(String responseType, String clientId, String redirectUri, String scope, String state, String nonce, ClientUserVO clientUserVO) Constructor to initialize the client authorization request. -
Method Summary
-
Constructor Details
-
AuthorizationRequestVO
public AuthorizationRequestVO(String responseType, String clientId, String redirectUri, String scope, String state, String nonce, ClientUserVO clientUserVO) Constructor to initialize the client authorization request.- Parameters:
responseType
- aString
object. which holds the requested response type for client authorization.clientId
- aString
object. which holds the unique identifier of the client for authorization.redirectUri
- aString
object. which holds the redirect URI of the client application.scope
- aString
object. which holds the scope of authorization request for client application.state
- aString
object. which holds the state of the client request.nonce
- aString
object. which holds the unique id for client authorization request.clientUserVO
- aClientUserVO
object. which holds the user information for id_token generation.
-