1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.location.api.postalcode;
17
18 import org.kuali.rice.core.api.criteria.QueryByCriteria;
19 import org.kuali.rice.core.api.exception.RiceIllegalArgumentException;
20 import org.kuali.rice.location.api.LocationConstants;
21 import org.springframework.cache.annotation.Cacheable;
22
23 import javax.jws.WebMethod;
24 import javax.jws.WebParam;
25 import javax.jws.WebResult;
26 import javax.jws.WebService;
27 import javax.jws.soap.SOAPBinding;
28 import javax.xml.bind.annotation.XmlElement;
29 import javax.xml.bind.annotation.XmlElementWrapper;
30 import java.util.List;
31
32
33
34
35
36
37 @WebService(name = "PostalCodeService", targetNamespace = LocationConstants.Namespaces.LOCATION_NAMESPACE_2_0)
38 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
39 public interface PostalCodeService {
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57 @WebMethod(operationName="getPostalCode")
58 @WebResult(name = "postalCode")
59 @Cacheable(value=PostalCode.Cache.NAME, key="'countryCode=' + #p0 + '|' + 'code=' + #p1")
60 PostalCode getPostalCode(@WebParam(name = "countryCode") String countryCode, @WebParam(name = "code") String code)
61 throws RiceIllegalArgumentException;
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79 @WebMethod(operationName="findAllPostalCodesInCountry")
80 @XmlElementWrapper(name = "postalCodes", required = false)
81 @XmlElement(name = "postalCode", required = false)
82 @WebResult(name = "postalCodes")
83 @Cacheable(value=PostalCode.Cache.NAME, key="'countryCode=' + #p0")
84 List<PostalCode> findAllPostalCodesInCountry(@WebParam(name = "countryCode") String countryCode)
85 throws RiceIllegalArgumentException;
86
87
88
89
90
91
92
93
94
95 @WebMethod(operationName = "findPostalCodes")
96 @WebResult(name = "results")
97 PostalCodeQueryResults findPostalCodes(@WebParam(name = "query") QueryByCriteria queryByCriteria) throws RiceIllegalArgumentException;
98 }