1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package org.kuali.mobility.bus.entity.helper;
16
17 import com.thoughtworks.xstream.annotations.XStreamAlias;
18 import java.util.List;
19
20
21
22
23
24 @XStreamAlias("route")
25 public class UMBusRoute {
26
27 @XStreamAlias("name")
28 private String name;
29
30 @XStreamAlias("id")
31 private String id;
32
33 @XStreamAlias("topofloop")
34 private String topofloop;
35
36 @XStreamAlias("busroutecolor")
37 private String color;
38
39 private List<UMBusStop> stops;
40
41 @XStreamAlias("stopcount")
42 private String stopcount;
43
44
45
46
47 public String getName() {
48 return name;
49 }
50
51
52
53
54 public void setName(String name) {
55 this.name = name;
56 }
57
58
59
60
61 public String getId() {
62 return id;
63 }
64
65
66
67
68 public void setId(String id) {
69 this.id = id;
70 }
71
72
73
74
75 public String getTopofloop() {
76 return topofloop;
77 }
78
79
80
81
82 public void setTopofloop(String topofloop) {
83 this.topofloop = topofloop;
84 }
85
86
87
88
89 public String getColor() {
90 return color;
91 }
92
93
94
95
96 public void setColor(String color) {
97 this.color = color;
98 }
99
100
101
102
103 public List<UMBusStop> getStops() {
104 return stops;
105 }
106
107
108
109
110 public void setStops(List<UMBusStop> stops) {
111 this.stops = stops;
112 }
113 }