1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.kuali.kra.external.awardpayment;
20
21 import java.util.List;
22
23 import javax.jws.WebParam;
24 import javax.jws.WebService;
25 import javax.jws.soap.SOAPBinding;
26
27 import org.kuali.kfs.module.external.kc.KcConstants;
28 import org.kuali.kfs.module.external.kc.dto.AwardBasisOfPaymentDTO;
29 import org.kuali.kfs.module.external.kc.dto.AwardMethodOfPaymentDTO;
30
31 @WebService(name = KcConstants.AwardPayment.SOAP_SERVICE_NAME, targetNamespace = KcConstants.KC_NAMESPACE_URI)
32 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
33 public interface AwardPaymentWebService {
34
35 public AwardBasisOfPaymentDTO getBasisOfPayment(@WebParam(name="basisOfPaymentCode") String basisOfPaymentCode);
36
37 public AwardMethodOfPaymentDTO getMethodOfPayment(@WebParam(name="methodOfPaymentCode") String methodOfPaymentCode);
38
39 public List<AwardBasisOfPaymentDTO> getMatchingBasisOfPayments(@WebParam(name="searchCriteria") AwardBasisOfPaymentDTO searchCriteria);
40
41 public List<AwardMethodOfPaymentDTO> getMatchingMethodOfPayments(@WebParam(name="searchCriteria") AwardMethodOfPaymentDTO searchCriteria);
42
43 public List<AwardMethodOfPaymentDTO> getMatchingMethodOfPaymentsForBasisOfPayment(@WebParam(name="basisOfPaymentCode") String basisOfPaymentCode);
44 }