View Javadoc

1   /**
2    * Copyright 2011 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
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  }