org.fpml.fpml_5.confirmation.Address Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.07.26 at 10:31:12 AM UTC
//
package org.fpml.fpml_5.confirmation;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* A type that represents a physical postal address.
*
* Java class for Address complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Address">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="streetAddress" type="{http://www.fpml.org/FpML-5/confirmation}StreetAddress" minOccurs="0"/>
* <element name="city" type="{http://www.fpml.org/FpML-5/confirmation}String" minOccurs="0"/>
* <element name="state" type="{http://www.fpml.org/FpML-5/confirmation}String" minOccurs="0"/>
* <element name="country" type="{http://www.fpml.org/FpML-5/confirmation}CountryCode" minOccurs="0"/>
* <element name="postalCode" type="{http://www.fpml.org/FpML-5/confirmation}String" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Address", propOrder = {
"streetAddress",
"city",
"state",
"country",
"postalCode"
})
public class Address {
protected StreetAddress streetAddress;
protected String city;
protected String state;
protected CountryCode country;
protected String postalCode;
/**
* Gets the value of the streetAddress property.
*
* @return
* possible object is
* {@link StreetAddress }
*
*/
public StreetAddress getStreetAddress() {
return streetAddress;
}
/**
* Sets the value of the streetAddress property.
*
* @param value
* allowed object is
* {@link StreetAddress }
*
*/
public void setStreetAddress(StreetAddress value) {
this.streetAddress = 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 String }
*
*/
public String getState() {
return state;
}
/**
* Sets the value of the state property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setState(String value) {
this.state = value;
}
/**
* Gets the value of the country property.
*
* @return
* possible object is
* {@link CountryCode }
*
*/
public CountryCode getCountry() {
return country;
}
/**
* Sets the value of the country property.
*
* @param value
* allowed object is
* {@link CountryCode }
*
*/
public void setCountry(CountryCode value) {
this.country = value;
}
/**
* Gets the value of the postalCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPostalCode() {
return postalCode;
}
/**
* Sets the value of the postalCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPostalCode(String value) {
this.postalCode = value;
}
}