1 2 package org.objectweb.rentacar.services.client; 3 4 import javax.xml.bind.annotation.AccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlType; 7 import org.objectweb.rentacar.services.client.AgencyCriteria; 8 9 10 31 @XmlAccessorType(AccessType.FIELD) 32 @XmlType(name = "agencyCriteria", propOrder = { 33 "agencyId", 34 "lastName", 35 "zipPattern" 36 }) 37 public class AgencyCriteria { 38 39 protected String agencyId; 40 protected String lastName; 41 protected String zipPattern; 42 43 51 public String getAgencyId() { 52 return agencyId; 53 } 54 55 63 public void setAgencyId(String value) { 64 this.agencyId = value; 65 } 66 67 75 public String getLastName() { 76 return lastName; 77 } 78 79 87 public void setLastName(String value) { 88 this.lastName = value; 89 } 90 91 99 public String getZipPattern() { 100 return zipPattern; 101 } 102 103 111 public void setZipPattern(String value) { 112 this.zipPattern = value; 113 } 114 115 } 116 | Popular Tags |