package at.gv.util.xsd.szr; 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 TravelDocumentType complex type. * *

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

 * <complexType name="TravelDocumentType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DocumentNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DocumentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="IssueDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="IssuingAuthority" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="IssuingCountry" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TravelDocumentType", propOrder = { "documentNumber", "documentType", "issueDate", "issuingAuthority", "issuingCountry" }) public class TravelDocumentType { @XmlElement(name = "DocumentNumber") protected String documentNumber; @XmlElement(name = "DocumentType") protected String documentType; @XmlElement(name = "IssueDate") protected String issueDate; @XmlElement(name = "IssuingAuthority") protected String issuingAuthority; @XmlElement(name = "IssuingCountry") protected String issuingCountry; /** * Gets the value of the documentNumber property. * * @return * possible object is * {@link String } * */ public String getDocumentNumber() { return documentNumber; } /** * Sets the value of the documentNumber property. * * @param value * allowed object is * {@link String } * */ public void setDocumentNumber(String value) { this.documentNumber = value; } /** * Gets the value of the documentType property. * * @return * possible object is * {@link String } * */ public String getDocumentType() { return documentType; } /** * Sets the value of the documentType property. * * @param value * allowed object is * {@link String } * */ public void setDocumentType(String value) { this.documentType = value; } /** * Gets the value of the issueDate property. * * @return * possible object is * {@link String } * */ public String getIssueDate() { return issueDate; } /** * Sets the value of the issueDate property. * * @param value * allowed object is * {@link String } * */ public void setIssueDate(String value) { this.issueDate = value; } /** * Gets the value of the issuingAuthority property. * * @return * possible object is * {@link String } * */ public String getIssuingAuthority() { return issuingAuthority; } /** * Sets the value of the issuingAuthority property. * * @param value * allowed object is * {@link String } * */ public void setIssuingAuthority(String value) { this.issuingAuthority = value; } /** * Gets the value of the issuingCountry property. * * @return * possible object is * {@link String } * */ public String getIssuingCountry() { return issuingCountry; } /** * Sets the value of the issuingCountry property. * * @param value * allowed object is * {@link String } * */ public void setIssuingCountry(String value) { this.issuingCountry = value; } }