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

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

//
// 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.XmlType;


/**
 * Provides formatted textual information that a vendor wishes to make known.  The type of information is indicated
 * 
 * 

Java class for VendorMessageType complex type. * *

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

 * <complexType name="VendorMessageType">
 *   <complexContent>
 *     <extension base="{http://www.opentravel.org/OTA/2003/05}FormattedTextType">
 *       <attribute name="InfoType" use="required" type="{http://www.opentravel.org/OTA/2003/05}OTA_CodeType" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VendorMessageType") public class VendorMessageType extends FormattedTextType { @XmlAttribute(name = "InfoType", required = true) protected String infoType; /** * Gets the value of the infoType property. * * @return * possible object is * {@link String } * */ public String getInfoType() { return infoType; } /** * Sets the value of the infoType property. * * @param value * allowed object is * {@link String } * */ public void setInfoType(String value) { this.infoType = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy