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

net.datastream.schemas.mp_results.mp0035_001.FleetBookingInfo Maven / Gradle / Ivy

There is a newer version: 12.1-4
Show newest version

package net.datastream.schemas.mp_results.mp0035_001;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import net.datastream.schemas.mp_fields.OCCUPATIONTYPEID_Type;
import org.openapplications.oagis_segments.DATETIME;


/**
 * 

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://schemas.datastream.net/MP_fields}AUTOBOOKHOURS"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}OCCUPATIONTYPE"/>
 *         <element name="PASSWORDREQUIRED" type="{http://schemas.datastream.net/MP_fields}FLAG_Type"/>
 *         <element name="STARTDATE" type="{http://www.openapplications.org/oagis_segments}DATETIME"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "autobookhours", "occupationtype", "passwordrequired", "startdate" }) @XmlRootElement(name = "FleetBookingInfo") public class FleetBookingInfo { @XmlElement(name = "AUTOBOOKHOURS", namespace = "http://schemas.datastream.net/MP_fields", required = true, defaultValue = "true") protected String autobookhours; @XmlElement(name = "OCCUPATIONTYPE", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected OCCUPATIONTYPEID_Type occupationtype; @XmlElement(name = "PASSWORDREQUIRED", required = true) protected String passwordrequired; @XmlElement(name = "STARTDATE", required = true) protected DATETIME startdate; /** * Gets the value of the autobookhours property. * * @return * possible object is * {@link String } * */ public String getAUTOBOOKHOURS() { return autobookhours; } /** * Sets the value of the autobookhours property. * * @param value * allowed object is * {@link String } * */ public void setAUTOBOOKHOURS(String value) { this.autobookhours = value; } /** * Gets the value of the occupationtype property. * * @return * possible object is * {@link OCCUPATIONTYPEID_Type } * */ public OCCUPATIONTYPEID_Type getOCCUPATIONTYPE() { return occupationtype; } /** * Sets the value of the occupationtype property. * * @param value * allowed object is * {@link OCCUPATIONTYPEID_Type } * */ public void setOCCUPATIONTYPE(OCCUPATIONTYPEID_Type value) { this.occupationtype = value; } /** * Gets the value of the passwordrequired property. * * @return * possible object is * {@link String } * */ public String getPASSWORDREQUIRED() { return passwordrequired; } /** * Sets the value of the passwordrequired property. * * @param value * allowed object is * {@link String } * */ public void setPASSWORDREQUIRED(String value) { this.passwordrequired = value; } /** * Gets the value of the startdate property. * * @return * possible object is * {@link DATETIME } * */ public DATETIME getSTARTDATE() { return startdate; } /** * Sets the value of the startdate property. * * @param value * allowed object is * {@link DATETIME } * */ public void setSTARTDATE(DATETIME value) { this.startdate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy