View Javadoc
1   /**
2    * Copyright 2005-2016 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.location.api.campus;
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   * <p>CampusService interface.</p>
34   *
35   * @author Kuali Rice Team (rice.collab@kuali.org)
36   */
37  @WebService(name = "campusService", targetNamespace = LocationConstants.Namespaces.LOCATION_NAMESPACE_2_0)
38  @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
39  public interface CampusService {
40  
41      /**
42       * This will return a {@link Campus}.
43       *
44       * @param code the code of the campus to return
45       * @throws RiceIllegalArgumentException if the code is null or blank
46       */
47      @WebMethod(operationName="getCampus")
48      @WebResult(name = "campus")
49      @Cacheable(value=Campus.Cache.NAME, key="'code=' + #p0")
50      Campus getCampus(@WebParam(name = "code") String code) throws RiceIllegalArgumentException;
51      
52      /**
53       * This will return all {@link Campus}.
54       */
55      @WebMethod(operationName="findAllCampuses")
56      @XmlElementWrapper(name = "campuses", required = false)
57      @XmlElement(name = "campus", required = false)
58      @WebResult(name = "campuses")
59      @Cacheable(value=Campus.Cache.NAME, key="'all'")
60      List<Campus> findAllCampuses();
61      
62      /**
63       * This will return a {@link CampusType}.
64       *
65       * @param code the code of the campus type to return
66       * @return CampusType object represented by the passed in code
67       * @throws RiceIllegalArgumentException if the code is null
68       *
69       */
70      @WebMethod(operationName="getCampusType")
71      @WebResult(name = "campusType")
72      @Cacheable(value=CampusType.Cache.NAME, key="'code=' + #p0")
73      CampusType getCampusType(@WebParam(name = "code") String code) throws RiceIllegalArgumentException;
74      
75      /**
76       * This will return all {@link CampusType}.
77       */
78      @WebMethod(operationName="findAllCampusTypes")
79      @XmlElementWrapper(name = "campusTypes", required = false)
80      @XmlElement(name = "campusType", required = false)
81      @WebResult(name = "campusTypes")
82      @Cacheable(value=CampusType.Cache.NAME, key="'all'")
83      List<CampusType> findAllCampusTypes();
84  
85      /**
86       * This method find Campuses based on a query criteria.  The criteria cannot be null.
87       *
88       * @since 2.0.1
89       * @param queryByCriteria the criteria.  Cannot be null.
90       * @return query results.  will never return null.
91       * @throws IllegalArgumentException if the queryByCriteria is null
92       */
93      @WebMethod(operationName = "findCampuses")
94      @WebResult(name = "results")
95      CampusQueryResults findCampuses(@WebParam(name = "query") QueryByCriteria queryByCriteria) throws RiceIllegalArgumentException;
96  
97      /**
98       * This method find CampusTypes based on a query criteria.  The criteria cannot be null.
99       *
100      * @since 2.0.1
101      * @param queryByCriteria the criteria.  Cannot be null.
102      * @return query results.  will never return null.
103      * @throws IllegalArgumentException if the queryByCriteria is null
104      */
105     @WebMethod(operationName = "findCampusTypes")
106     @WebResult(name = "results")
107     CampusTypeQueryResults findCampusTypes(@WebParam(name = "query") QueryByCriteria queryByCriteria) throws RiceIllegalArgumentException;
108 }