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.dao.helper; 16 17 import com.thoughtworks.xstream.annotations.XStreamAlias; 18 19 20 @XStreamAlias("stopname") 21 public class UMBusStopName { 22 //route name 23 @XStreamAlias("name") 24 private String name; 25 //bus stop name from the feed 26 @XStreamAlias("name1") 27 private String name1; 28 //bus stop name to display 29 @XStreamAlias("name2") 30 private String name2; 31 32 33 /** 34 * @return the name 35 */ 36 // public String getName() { 37 // return name; 38 // } 39 /** 40 * @param name the name to set 41 */ 42 // public void setName(String name) { 43 // this.name = name; 44 // } 45 /** 46 * @return the name1 47 */ 48 public String getName1() { 49 return name1; 50 } 51 /** 52 * @param name1 the name1 to set 53 */ 54 public void setName1(String name1) { 55 this.name1 = name1; 56 } 57 /** 58 * @return the name2 59 */ 60 public String getName2() { 61 return name2; 62 } 63 /** 64 * @param name2 the name2 to set 65 */ 66 public void setName2(String name2) { 67 this.name2 = name2; 68 } 69 70 }