View Javadoc
1   /**
2    * Copyright 2011-2014 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.mobility.bus.service;
17  
18  import org.kuali.mobility.bus.dao.BusDao;
19  import org.kuali.mobility.bus.entity.*;
20  
21  import javax.jws.WebService;
22  import java.util.List;
23  
24  @WebService
25  public interface BusService {
26  
27      public List<BusRoute> getRoutes( String campus );
28      public BusRoute getRoute( String campus, long id );
29  
30      public List<BusStop> getStops( String campus );
31      public BusStop getStop( String campus, long id );
32  
33      public BusStop getStopByName( String name, String campus );
34      public BusStop getStopById(int id);
35  
36  	public List<BusStop> getNearbyStops(double lat1, double lon1, double radius);
37  	public List<BusRoute> getRoutesWithDistance(double lat1, double lon1, double radius);
38  
39      public List<ScheduledStop> getArrivalData( String campus, String routeId, String stopId );
40  
41      public List<Bus> getAllBuses(String campus);
42  
43      public List<BusAlert> getAlerts();
44  
45  	public BusDao getDao();
46  }