View Javadoc

1   /**
2    * Copyright 2011-2013 The Kuali Foundation Licensed under the Educational
3    * Community License, Version 2.0 (the "License"); you may not use this file
4    * except in compliance with the License. You may obtain a copy of the License
5    * at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12   * License for the specific language governing permissions and limitations under
13   * the License.
14   */
15  package org.kuali.mobility.academics.service;
16  
17  import java.util.List;
18  import javax.jws.WebService;
19  import javax.servlet.http.HttpServletRequest;
20  import org.kuali.mobility.academics.dao.AcademicsDao;
21  import org.kuali.mobility.academics.entity.Section;
22  import org.kuali.mobility.academics.entity.Term;
23  
24  /**
25   *
26   * @author Joe Swanson <joseswan@umich.edu>
27   */
28  @WebService
29  public interface AcademicsAuthService {
30  
31      public List<? extends Term> getTerms();
32      public List<? extends Term> getTerms(HttpServletRequest request);
33  
34      public List<? extends Section> getClassSchedule( String termId, String careerId );
35      public List<? extends Section> getClassSchedule( HttpServletRequest request, String termId, String careerId );
36  
37      public void setDao(AcademicsDao dao);
38  
39      public AcademicsDao getDao();
40  }