package com.experian.payline.ws.obj; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * * This element contains information about the * address * * * <p>Java class for address complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="address"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="street1" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="street2" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="cityName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="zipCode" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="phone" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "address", propOrder = { "name", "street1", "street2", "cityName", "zipCode", "country", "phone" }) public class Address { @XmlElement(required = true, nillable = true) protected String name; @XmlElement(required = true, nillable = true) protected String street1; @XmlElement(required = true, nillable = true) protected String street2; @XmlElement(required = true, nillable = true) protected String cityName; @XmlElement(required = true, nillable = true) protected String zipCode; @XmlElement(required = true, nillable = true) protected String country; @XmlElement(required = true, nillable = true) protected String phone; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the street1 property. * * @return * possible object is * {@link String } * */ public String getStreet1() { return street1; } /** * Sets the value of the street1 property. * * @param value * allowed object is * {@link String } * */ public void setStreet1(String value) { this.street1 = value; } /** * Gets the value of the street2 property. * * @return * possible object is * {@link String } * */ public String getStreet2() { return street2; } /** * Sets the value of the street2 property. * * @param value * allowed object is * {@link String } * */ public void setStreet2(String value) { this.street2 = value; } /** * Gets the value of the cityName property. * * @return * possible object is * {@link String } * */ public String getCityName() { return cityName; } /** * Sets the value of the cityName property. * * @param value * allowed object is * {@link String } * */ public void setCityName(String value) { this.cityName = value; } /** * Gets the value of the zipCode property. * * @return * possible object is * {@link String } * */ public String getZipCode() { return zipCode; } /** * Sets the value of the zipCode property. * * @param value * allowed object is * {@link String } * */ public void setZipCode(String value) { this.zipCode = value; } /** * Gets the value of the country property. * * @return * possible object is * {@link String } * */ public String getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link String } * */ public void setCountry(String value) { this.country = value; } /** * Gets the value of the phone property. * * @return * possible object is * {@link String } * */ public String getPhone() { return phone; } /** * Sets the value of the phone property. * * @param value * allowed object is * {@link String } * */ public void setPhone(String value) { this.phone = value; } }