com.omgm.speedy.eps.soap.model.ResultAddressString Maven / Gradle / Ivy
package com.omgm.speedy.eps.soap.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for resultAddressString complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="resultAddressString">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="fullAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="localAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="siteAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "resultAddressString", propOrder = {
"fullAddress",
"localAddress",
"siteAddress"
})
public class ResultAddressString {
protected String fullAddress;
protected String localAddress;
protected String siteAddress;
/**
* Gets the value of the fullAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFullAddress() {
return fullAddress;
}
/**
* Sets the value of the fullAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFullAddress(String value) {
this.fullAddress = value;
}
/**
* Gets the value of the localAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocalAddress() {
return localAddress;
}
/**
* Sets the value of the localAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocalAddress(String value) {
this.localAddress = value;
}
/**
* Gets the value of the siteAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSiteAddress() {
return siteAddress;
}
/**
* Sets the value of the siteAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSiteAddress(String value) {
this.siteAddress = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy