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 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 - a String object. which holds the requested response type for client authorization.
      clientId - a String object. which holds the unique identifier of the client for authorization.
      redirectUri - a String object. which holds the redirect URI of the client application.
      scope - a String object. which holds the scope of authorization request for client application.
      state - a String object. which holds the state of the client request.
      nonce - a String object. which holds the unique id for client authorization request.
      clientUserVO - a ClientUserVO object. which holds the user information for id_token generation.