All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.ota_tools.jaxb.ota2010a.ping.AddressInfoType Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.12.31 at 04:22:27 PM PST 
//


package net.sourceforge.ota_tools.jaxb.ota2010a.ping;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * Information about an address that identifies a location for a specific purposes.
 * 
 * 

Java class for AddressInfoType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="AddressInfoType">
 *   <complexContent>
 *     <extension base="{http://www.opentravel.org/OTA/2003/05}AddressType">
 *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}DefaultIndGroup"/>
 *       <attribute name="UseType" type="{http://www.opentravel.org/OTA/2003/05}OTA_CodeType" />
 *       <attribute name="RPH" type="{http://www.opentravel.org/OTA/2003/05}RPH_Type" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AddressInfoType") @XmlSeeAlso({ net.sourceforge.ota_tools.jaxb.ota2010a.ping.CustomerType.Address.class }) public class AddressInfoType extends AddressType { @XmlAttribute(name = "UseType") protected String useType; @XmlAttribute(name = "RPH") protected String rph; @XmlAttribute(name = "DefaultInd") protected Boolean defaultInd; /** * Gets the value of the useType property. * * @return * possible object is * {@link String } * */ public String getUseType() { return useType; } /** * Sets the value of the useType property. * * @param value * allowed object is * {@link String } * */ public void setUseType(String value) { this.useType = value; } /** * Gets the value of the rph property. * * @return * possible object is * {@link String } * */ public String getRPH() { return rph; } /** * Sets the value of the rph property. * * @param value * allowed object is * {@link String } * */ public void setRPH(String value) { this.rph = value; } /** * Gets the value of the defaultInd property. * * @return * possible object is * {@link Boolean } * */ public Boolean getDefaultInd() { return defaultInd; } /** * Sets the value of the defaultInd property. * * @param value * allowed object is * {@link Boolean } * */ public void setDefaultInd(Boolean value) { this.defaultInd = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy