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.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  }