1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package org.kuali.mobility.bus.entity;
16
17 import java.io.Serializable;
18 import java.util.List;
19
20 import javax.xml.bind.annotation.XmlRootElement;
21 @XmlRootElement(name = "busRoutePath")
22 public class BusRoutePathImpl implements Serializable, BusRoutePath {
23
24 private static final long serialVersionUID = 5210365767489424835L;
25
26 private String id;
27 private String color;
28 private String transparency;
29 private String lineWidth;
30 private List<Double> latLongs;
31
32 public void setId(String id) {
33 this.id = id;
34 }
35
36 public String getId() {
37 return id;
38 }
39
40 public void setColor(String color) {
41 this.color = color;
42 }
43
44 public String getColor() {
45 return color;
46 }
47
48 public void setTransparency(String transparency) {
49 this.transparency = transparency;
50 }
51
52 public String getTransparency() {
53 return transparency;
54 }
55
56 public void setLineWidth(String lineWidth) {
57 this.lineWidth = lineWidth;
58 }
59
60 public String getLineWidth() {
61 return lineWidth;
62 }
63
64 public void setLatLongs(List<Double> latLongs) {
65 this.latLongs = latLongs;
66 }
67
68 public List<Double> getLatLongs() {
69 return latLongs;
70 }
71 }