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

net.sourceforge.ota_tools.jaxb.ota2010a.ping.VideoDescriptionType 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * Describes a video item.
 * 
 * 

Java class for VideoDescriptionType complex type. * *

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

 * <complexType name="VideoDescriptionType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoFormat" maxOccurs="unbounded" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <extension base="{http://www.opentravel.org/OTA/2003/05}VideoItemType">
 *                 <attGroup ref="{http://www.opentravel.org/OTA/2003/05}ID_OptionalGroup"/>
 *                 <attGroup ref="{http://www.opentravel.org/OTA/2003/05}MultimediaDescriptionGroup"/>
 *               </extension>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="Category" type="{http://www.opentravel.org/OTA/2003/05}OTA_CodeType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoDescriptionType", propOrder = { "videoFormat" }) @XmlSeeAlso({ net.sourceforge.ota_tools.jaxb.ota2010a.ping.VideoItemsType.VideoItem.class }) public class VideoDescriptionType { @XmlElement(name = "VideoFormat") protected List videoFormat; @XmlAttribute(name = "Category") protected String category; /** * Gets the value of the videoFormat 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 videoFormat property. * *

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

     *    getVideoFormat().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VideoDescriptionType.VideoFormat } * * */ public List getVideoFormat() { if (videoFormat == null) { videoFormat = new ArrayList(); } return this.videoFormat; } /** * Gets the value of the category property. * * @return * possible object is * {@link String } * */ public String getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link String } * */ public void setCategory(String value) { this.category = value; } /** *

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}VideoItemType">
     *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}ID_OptionalGroup"/>
     *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}MultimediaDescriptionGroup"/>
     *     </extension>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class VideoFormat extends VideoItemType { @XmlAttribute(name = "ID") protected String id; @XmlAttribute(name = "ContentID") protected String contentID; @XmlAttribute(name = "Title") protected String title; @XmlAttribute(name = "Author") protected String author; @XmlAttribute(name = "CopyrightNotice") protected String copyrightNotice; @XmlAttribute(name = "CopyrightOwner") protected String copyrightOwner; @XmlAttribute(name = "CopyrightStart") protected String copyrightStart; @XmlAttribute(name = "CopyrightEnd") protected String copyrightEnd; @XmlAttribute(name = "EffectiveStart") protected String effectiveStart; @XmlAttribute(name = "EffectiveEnd") protected String effectiveEnd; @XmlAttribute(name = "ApplicableStart") protected String applicableStart; @XmlAttribute(name = "ApplicableEnd") protected String applicableEnd; @XmlAttribute(name = "RecordID") protected String recordID; @XmlAttribute(name = "SourceID") protected String sourceID; /** * 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 contentID property. * * @return * possible object is * {@link String } * */ public String getContentID() { return contentID; } /** * Sets the value of the contentID property. * * @param value * allowed object is * {@link String } * */ public void setContentID(String value) { this.contentID = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the author property. * * @return * possible object is * {@link String } * */ public String getAuthor() { return author; } /** * Sets the value of the author property. * * @param value * allowed object is * {@link String } * */ public void setAuthor(String value) { this.author = value; } /** * Gets the value of the copyrightNotice property. * * @return * possible object is * {@link String } * */ public String getCopyrightNotice() { return copyrightNotice; } /** * Sets the value of the copyrightNotice property. * * @param value * allowed object is * {@link String } * */ public void setCopyrightNotice(String value) { this.copyrightNotice = value; } /** * Gets the value of the copyrightOwner property. * * @return * possible object is * {@link String } * */ public String getCopyrightOwner() { return copyrightOwner; } /** * Sets the value of the copyrightOwner property. * * @param value * allowed object is * {@link String } * */ public void setCopyrightOwner(String value) { this.copyrightOwner = value; } /** * Gets the value of the copyrightStart property. * * @return * possible object is * {@link String } * */ public String getCopyrightStart() { return copyrightStart; } /** * Sets the value of the copyrightStart property. * * @param value * allowed object is * {@link String } * */ public void setCopyrightStart(String value) { this.copyrightStart = value; } /** * Gets the value of the copyrightEnd property. * * @return * possible object is * {@link String } * */ public String getCopyrightEnd() { return copyrightEnd; } /** * Sets the value of the copyrightEnd property. * * @param value * allowed object is * {@link String } * */ public void setCopyrightEnd(String value) { this.copyrightEnd = value; } /** * Gets the value of the effectiveStart property. * * @return * possible object is * {@link String } * */ public String getEffectiveStart() { return effectiveStart; } /** * Sets the value of the effectiveStart property. * * @param value * allowed object is * {@link String } * */ public void setEffectiveStart(String value) { this.effectiveStart = value; } /** * Gets the value of the effectiveEnd property. * * @return * possible object is * {@link String } * */ public String getEffectiveEnd() { return effectiveEnd; } /** * Sets the value of the effectiveEnd property. * * @param value * allowed object is * {@link String } * */ public void setEffectiveEnd(String value) { this.effectiveEnd = value; } /** * Gets the value of the applicableStart property. * * @return * possible object is * {@link String } * */ public String getApplicableStart() { return applicableStart; } /** * Sets the value of the applicableStart property. * * @param value * allowed object is * {@link String } * */ public void setApplicableStart(String value) { this.applicableStart = value; } /** * Gets the value of the applicableEnd property. * * @return * possible object is * {@link String } * */ public String getApplicableEnd() { return applicableEnd; } /** * Sets the value of the applicableEnd property. * * @param value * allowed object is * {@link String } * */ public void setApplicableEnd(String value) { this.applicableEnd = value; } /** * Gets the value of the recordID property. * * @return * possible object is * {@link String } * */ public String getRecordID() { return recordID; } /** * Sets the value of the recordID property. * * @param value * allowed object is * {@link String } * */ public void setRecordID(String value) { this.recordID = value; } /** * Gets the value of the sourceID property. * * @return * possible object is * {@link String } * */ public String getSourceID() { return sourceID; } /** * Sets the value of the sourceID property. * * @param value * allowed object is * {@link String } * */ public void setSourceID(String value) { this.sourceID = value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy