// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.3-hudson-jaxb-ri-2.2.3-3- // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.06.10 at 06:39:45 PM IST // package org.milyn.javabean.jaxb.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * First line of documentation for a <b>USAddress</b>. * * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "USAddress", propOrder = { "toName", "street", "city", "state", "zipCode" }) public class USAddress { @XmlElement(name = "name", required = true) protected String toName; @XmlElement(required = true) protected String street; @XmlElement(required = true) protected String city; @XmlElement(required = true) protected USState state; @XmlElement(name = "zip", required = true, type = String.class) @XmlJavaTypeAdapter(Adapter1.class) protected Integer zipCode; @XmlAttribute(name = "country") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String country; /** * Gets the value of the toName property. * * @return * possible object is * {@link String } * */ public String getToName() { return toName; } /** * Sets the value of the toName property. * * @param value * allowed object is * {@link String } * */ public void setToName(String value) { this.toName = value; } /** * Gets the value of the street property. * * @return * possible object is * {@link String } * */ public String getStreet() { return street; } /** * Sets the value of the street property. * * @param value * allowed object is * {@link String } * */ public void setStreet(String value) { this.street = value; } /** * Gets the value of the city property. * * @return * possible object is * {@link String } * */ public String getCity() { return city; } /** * Sets the value of the city property. * * @param value * allowed object is * {@link String } * */ public void setCity(String value) { this.city = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link USState } * */ public USState getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link USState } * */ public void setState(USState value) { this.state = value; } /** * Gets the value of the zipCode property. * * @return * possible object is * {@link String } * */ public Integer getZipCode() { return zipCode; } /** * Sets the value of the zipCode property. * * @param value * allowed object is * {@link String } * */ public void setZipCode(Integer value) { this.zipCode = value; } /** * Gets the value of the country property. * * @return * possible object is * {@link String } * */ public String getCountry() { if (country == null) { return "US"; } else { return country; } } /** * Sets the value of the country property. * * @param value * allowed object is * {@link String } * */ public void setCountry(String value) { this.country = value; } }