Package org.openiam.srvc.am
Class ApproverAssociationsWebServiceImpl
- java.lang.Object
-
- org.openiam.srvc.AbstractApiService
-
- org.openiam.srvc.am.ApproverAssociationsWebServiceImpl
-
- All Implemented Interfaces:
ApproverAssociationsWebService
@Service("approverAssociationsWS") public class ApproverAssociationsWebServiceImpl extends AbstractApiService implements ApproverAssociationsWebServiceCreated by Alexander Dukkardt on 2017-04-03.
-
-
Field Summary
-
Fields inherited from class org.openiam.srvc.AbstractApiService
applicationContext, log, rabbitMQSender
-
-
Constructor Summary
Constructors Constructor Description ApproverAssociationsWebServiceImpl(ApproverAssociationQueue rabbitMqQueue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApproverAssociationListResponsefindBeans(ApproverAssociationSearchBean searchBean, int from, int size)List<ApproverAssociation>getApproverAssociations(ApproverAssociationSearchBean searchBean, int from, int size)ResponseremoveApproverAssociation(String approverAssociationId)Removes the approver association.ResponsesaveApproverAssociation(ApproverAssociation approverAssociation)ResponsesaveApproverAssociations(List<ApproverAssociation> approverAssociationList, AssociationType type, String entityId)Saves or updates list of Approver Association entities for given association type and association id.-
Methods inherited from class org.openiam.srvc.AbstractApiService
broadcast, crudRequest, getBooleanValue, getIntValue, getIntValue, getRabbitMqQueue, getResponse, getResponse, getValue, getValue, getValueList, getValueList, idRequest, manageApiRequest, manageApiRequest, manageCrudApiRequest, manageCrudApiRequest, manageCrudApiRequest, manageCrudApiRequest, membershipRequestProcessing, membershipRequestProcessing, publish, publish, sendAsync, sendAsync
-
-
-
-
Constructor Detail
-
ApproverAssociationsWebServiceImpl
@Autowired public ApproverAssociationsWebServiceImpl(ApproverAssociationQueue rabbitMqQueue)
-
-
Method Detail
-
getApproverAssociations
@Transactional(readOnly=true) public List<ApproverAssociation> getApproverAssociations(ApproverAssociationSearchBean searchBean, int from, int size)
- Specified by:
getApproverAssociationsin interfaceApproverAssociationsWebService
-
findBeans
@Transactional(readOnly=true) public ApproverAssociationListResponse findBeans(ApproverAssociationSearchBean searchBean, int from, int size)
- Specified by:
findBeansin interfaceApproverAssociationsWebService
-
saveApproverAssociations
public Response saveApproverAssociations(List<ApproverAssociation> approverAssociationList, AssociationType type, String entityId)
Description copied from interface:ApproverAssociationsWebServiceSaves or updates list of Approver Association entities for given association type and association id.- Specified by:
saveApproverAssociationsin interfaceApproverAssociationsWebService- Parameters:
approverAssociationList- approver association entity listtype- Association typeentityId- association id
-
saveApproverAssociation
public Response saveApproverAssociation(ApproverAssociation approverAssociation)
- Specified by:
saveApproverAssociationin interfaceApproverAssociationsWebService
-
removeApproverAssociation
public Response removeApproverAssociation(String approverAssociationId)
Description copied from interface:ApproverAssociationsWebServiceRemoves the approver association.- Specified by:
removeApproverAssociationin interfaceApproverAssociationsWebService- Parameters:
approverAssociationId- the approver association id
-
-