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
19 public class UMBusRoutePathInfo {
20 @XStreamAlias("id")
21 private String id;
22
23 @XStreamAlias("color")
24 private String color;
25
26 @XStreamAlias("transparency")
27 private String transparency;
28
29 @XStreamAlias("line_width")
30 private String lineWidth;
31
32 public String getId() {
33 return id;
34 }
35
36 public void setId(String id) {
37 this.id = id;
38 }
39
40 public String getColor() {
41 return color;
42 }
43
44 public void setColor(String color) {
45 this.color = color;
46 }
47
48 public String getTransparency() {
49 return transparency;
50 }
51
52 public void setTransparency(String transparency) {
53 this.transparency = transparency;
54 }
55
56 public String getLineWidth() {
57 return lineWidth;
58 }
59
60 public void setLineWidth(String lineWidth) {
61 this.lineWidth = lineWidth;
62 }
63 }