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

net.sourceforge.ota_tools.jaxb.ota2010a.ping.UniqueIDType 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * An identifier used to uniquely reference an object in a system (e.g. an airline reservation reference, customer profile reference, booking confirmation number, or a reference to a previous availability quote). 
 * 
 * 

Java class for UniqueID_Type complex type. * *

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

 * <complexType name="UniqueID_Type">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="CompanyName" type="{http://www.opentravel.org/OTA/2003/05}CompanyNameType" minOccurs="0"/>
 *       </sequence>
 *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}UniqueID_Group"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UniqueID_Type", propOrder = { "companyName" }) @XmlSeeAlso({ net.sourceforge.ota_tools.jaxb.ota2010a.ping.SourceType.RequestorID.class }) public class UniqueIDType { @XmlElement(name = "CompanyName") protected CompanyNameType companyName; @XmlAttribute(name = "URL") @XmlSchemaType(name = "anyURI") protected String url; @XmlAttribute(name = "Type", required = true) protected String type; @XmlAttribute(name = "Instance") protected String instance; @XmlAttribute(name = "ID_Context") protected String idContext; @XmlAttribute(name = "ID", required = true) protected String id; /** * Gets the value of the companyName property. * * @return * possible object is * {@link CompanyNameType } * */ public CompanyNameType getCompanyName() { return companyName; } /** * Sets the value of the companyName property. * * @param value * allowed object is * {@link CompanyNameType } * */ public void setCompanyName(CompanyNameType value) { this.companyName = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getURL() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setURL(String value) { this.url = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the instance property. * * @return * possible object is * {@link String } * */ public String getInstance() { return instance; } /** * Sets the value of the instance property. * * @param value * allowed object is * {@link String } * */ public void setInstance(String value) { this.instance = value; } /** * Gets the value of the idContext property. * * @return * possible object is * {@link String } * */ public String getIDContext() { return idContext; } /** * Sets the value of the idContext property. * * @param value * allowed object is * {@link String } * */ public void setIDContext(String value) { this.idContext = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getID() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setID(String value) { this.id = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy