Class DeleteClientRolesServiceImpl
java.lang.Object
com.skava.auth.service.impl.clientrole.DeleteClientRolesServiceImpl
- All Implemented Interfaces:
DeleteClientRolesService
,com.skava.core.EcommService<ClientRoleRequest,
com.skava.core.ResponseModel>
@Service
@Transactional(readOnly=false,
noRollbackFor=java.lang.Exception.class)
public class DeleteClientRolesServiceImpl
extends Object
implements DeleteClientRolesService
This service class implements DeleteClientRolesService and handles the delete roles of the client.
- Version:
- $Id: $Id
- Author:
- Infosys Equinox
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
deleteClientRole
(String clientId, Long collectionId) This method is used to delete roles of the client.List<com.skava.core.validation.ValidatorComponent>
This method return the list of validation component.com.skava.core.ResponseModel
process
(ClientRoleRequest input) This method return the client's roles and privileges.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.skava.core.EcommService
getValidateException, getValidator
-
Constructor Details
-
DeleteClientRolesServiceImpl
public DeleteClientRolesServiceImpl()The class constructor.
-
-
Method Details
-
getValidator
This method return the list of validation component.- Specified by:
getValidator
in interfacecom.skava.core.EcommService<ClientRoleRequest,
com.skava.core.ResponseModel> - Returns:
- a @
List
ofValidatorComponent
objects.
-
process
@SendEvent(eventType="authservice/clientrole/delete", identifier="request_clientId") public com.skava.core.ResponseModel process(ClientRoleRequest input) This method return the client's roles and privileges.- Specified by:
process
in interfacecom.skava.core.EcommService<ClientRoleRequest,
com.skava.core.ResponseModel> - Parameters:
input
- aClientRoleRequest
object.- Returns:
- a
ResponseModel
object.
-
deleteClientRole
This method is used to delete roles of the client.
-