1
2
3
4
5
6
7
8
9
10
11
12
13
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 }