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

net.sourceforge.ota_tools.jaxb.ota2010a.ping.ImageItemsType 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 java.util.ArrayList;
import java.util.List;
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.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * Collection of image items.
 * 
 * 

Java class for ImageItemsType complex type. * *

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

 * <complexType name="ImageItemsType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ImageItem" maxOccurs="unbounded">
 *           <complexType>
 *             <complexContent>
 *               <extension base="{http://www.opentravel.org/OTA/2003/05}ImageDescriptionType">
 *                 <attGroup ref="{http://www.opentravel.org/OTA/2003/05}DateTimeStampGroup"/>
 *                 <attGroup ref="{http://www.opentravel.org/OTA/2003/05}ID_OptionalGroup"/>
 *                 <attGroup ref="{http://www.opentravel.org/OTA/2003/05}RemovalGroup"/>
 *                 <attribute name="Version" type="{http://www.w3.org/2001/XMLSchema}string" />
 *               </extension>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImageItemsType", propOrder = { "imageItem" }) public class ImageItemsType { @XmlElement(name = "ImageItem", required = true) protected List imageItem; /** * Gets the value of the imageItem property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the imageItem property. * *

* For example, to add a new item, do as follows: *

     *    getImageItem().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ImageItemsType.ImageItem } * * */ public List getImageItem() { if (imageItem == null) { imageItem = new ArrayList(); } return this.imageItem; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <extension base="{http://www.opentravel.org/OTA/2003/05}ImageDescriptionType">
     *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}DateTimeStampGroup"/>
     *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}ID_OptionalGroup"/>
     *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}RemovalGroup"/>
     *       <attribute name="Version" type="{http://www.w3.org/2001/XMLSchema}string" />
     *     </extension>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class ImageItem extends ImageDescriptionType { @XmlAttribute(name = "Version") protected String version; @XmlAttribute(name = "CreateDateTime") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createDateTime; @XmlAttribute(name = "CreatorID") protected String creatorID; @XmlAttribute(name = "LastModifyDateTime") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModifyDateTime; @XmlAttribute(name = "LastModifierID") protected String lastModifierID; @XmlAttribute(name = "PurgeDate") @XmlSchemaType(name = "date") protected XMLGregorianCalendar purgeDate; @XmlAttribute(name = "ID") protected String id; @XmlAttribute(name = "Removal") protected Boolean removal; /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the createDateTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreateDateTime() { return createDateTime; } /** * Sets the value of the createDateTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreateDateTime(XMLGregorianCalendar value) { this.createDateTime = value; } /** * Gets the value of the creatorID property. * * @return * possible object is * {@link String } * */ public String getCreatorID() { return creatorID; } /** * Sets the value of the creatorID property. * * @param value * allowed object is * {@link String } * */ public void setCreatorID(String value) { this.creatorID = value; } /** * Gets the value of the lastModifyDateTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastModifyDateTime() { return lastModifyDateTime; } /** * Sets the value of the lastModifyDateTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastModifyDateTime(XMLGregorianCalendar value) { this.lastModifyDateTime = value; } /** * Gets the value of the lastModifierID property. * * @return * possible object is * {@link String } * */ public String getLastModifierID() { return lastModifierID; } /** * Sets the value of the lastModifierID property. * * @param value * allowed object is * {@link String } * */ public void setLastModifierID(String value) { this.lastModifierID = value; } /** * Gets the value of the purgeDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getPurgeDate() { return purgeDate; } /** * Sets the value of the purgeDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setPurgeDate(XMLGregorianCalendar value) { this.purgeDate = 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; } /** * Gets the value of the removal property. * * @return * possible object is * {@link Boolean } * */ public Boolean getRemoval() { return removal; } /** * Sets the value of the removal property. * * @param value * allowed object is * {@link Boolean } * */ public void setRemoval(Boolean value) { this.removal = value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy