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 Details

    • AuthorizationResponseVO

      public AuthorizationResponseVO(String tokenType, String idToken, String token, String code, String state, String redirectUri)
      Parameters:
      tokenType - a String object. which holds the type of the token required after client authorization.
      idToken - a String object. which holds the id_token for client application.
      token - a String object. which holds the session token for client application.
      code - a String object. which holds the auth code for client application.
      state - a String object. which holds the state provided in the client application request.
      redirectUri - a String object. which holds the valid redirect URI authorized to navigate.