You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SchedulesDbo.java 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.rthoni.stssaguenay.dbo;
  2. import com.luticate.utils.dbo.LuDbo;
  3. import com.luticate.utils.dbo.LuPaginatedDbo;
  4. import org.joda.time.LocalDateTime;
  5. import java.util.List;
  6. /**
  7. * Created by robin on 10/1/16.
  8. */
  9. public class SchedulesDbo extends LuDbo {
  10. public static class SchedulesDboArray extends LuPaginatedDbo<SchedulesDbo>
  11. {
  12. public SchedulesDboArray()
  13. {
  14. super(SchedulesDbo.class);
  15. }
  16. }
  17. protected String _stopId;
  18. protected String _routeId;
  19. protected List<LocalDateTime> _schedules;
  20. public String getStopId() {
  21. return _stopId;
  22. }
  23. public void setStopId(String stopId) {
  24. _stopId = stopId;
  25. }
  26. public String getRouteId() {
  27. return _routeId;
  28. }
  29. public void setRouteId(String routeId) {
  30. _routeId = routeId;
  31. }
  32. public List<LocalDateTime> getSchedules() {
  33. return _schedules;
  34. }
  35. public void setSchedules(List<LocalDateTime> schedules) {
  36. _schedules = schedules;
  37. }
  38. }