Class ClientsRolesResponse
java.lang.Object
com.skava.core.validation.OutputModel
com.skava.core.ResponseModel
com.skava.auth.model.response.clientrole.ClientsRolesResponse
- All Implemented Interfaces:
Serializable
public class ClientsRolesResponse
extends com.skava.core.ResponseModel
Data transfer class holds the list of client's role details as response data to transfer from service to controller.
- Author:
- Infosys Equinox
- See Also:
-
Field Summary
Fields inherited from class com.skava.core.ResponseModel
responseCode, responseMessage, timeStamp
-
Constructor Summary
ConstructorsConstructorDescriptionClientsRolesResponse
(List<ClientRole> clientRoles, Long count, String responseCode) Instantiates new roles response.ClientsRolesResponse
(List<ClientRole> clientRoles, String responseCode) Instantiates new roles response. -
Method Summary
Methods inherited from class com.skava.core.ResponseModel
getResponseCode, getResponseMessage, getTimeStamp, setResponseCode, setResponseMessage, setTimeStamp
-
Constructor Details
-
ClientsRolesResponse
Instantiates new roles response.- Parameters:
responseCode
- The response code.clientRoles
- The list of roles.
-
ClientsRolesResponse
Instantiates new roles response.- Parameters:
responseCode
- The response code.count
- aLong
object. It indicate the count of the clients.clientRoles
- The list of roles.
-