
org.iata.ndc.schema.TravelersTraveler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ndc-jaxb Show documentation
Show all versions of ndc-jaxb Show documentation
JAXB generated classes for NDC Client
The newest version!
package org.iata.ndc.schema;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.iata.org/IATA/EDIST}AnonymousTraveler" minOccurs="0"/>
* <element ref="{http://www.iata.org/IATA/EDIST}RecognizedTraveler" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"anonymousTraveler",
"recognizedTraveler"
})
public class TravelersTraveler {
@XmlElement(name = "AnonymousTraveler")
protected AnonymousTravelerType anonymousTraveler;
@XmlElement(name = "RecognizedTraveler")
protected TravelerDetailType recognizedTraveler;
/**
* Gets the value of the anonymousTraveler property.
*
* @return
* possible object is
* {@link AnonymousTravelerType }
*
*/
public AnonymousTravelerType getAnonymousTraveler() {
return anonymousTraveler;
}
/**
* Sets the value of the anonymousTraveler property.
*
* @param value
* allowed object is
* {@link AnonymousTravelerType }
*
*/
public void setAnonymousTraveler(AnonymousTravelerType value) {
this.anonymousTraveler = value;
}
/**
* Gets the value of the recognizedTraveler property.
*
* @return
* possible object is
* {@link TravelerDetailType }
*
*/
public TravelerDetailType getRecognizedTraveler() {
return recognizedTraveler;
}
/**
* Sets the value of the recognizedTraveler property.
*
* @param value
* allowed object is
* {@link TravelerDetailType }
*
*/
public void setRecognizedTraveler(TravelerDetailType value) {
this.recognizedTraveler = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy