com.glookast.api.capture.info.RequestVideoFormatId Maven / Gradle / Ivy
package com.glookast.api.capture.info;
import java.io.Serializable;
import java.util.UUID;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.glookast.commons.xml.XmlAdapterUUID;
/**
* Java class for RequestVideoFormatId complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RequestVideoFormatId">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="videoFormatId" type="{http://base.commons.glookast.com}UUID"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RequestVideoFormatId", propOrder = {
"videoFormatId"
})
public class RequestVideoFormatId implements Serializable
{
@XmlElement(required = true, type = String.class)
@XmlJavaTypeAdapter(XmlAdapterUUID.class)
protected UUID videoFormatId;
/**
* Default no-arg constructor
*
*/
public RequestVideoFormatId() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public RequestVideoFormatId(final UUID videoFormatId) {
this.videoFormatId = videoFormatId;
}
/**
* Gets the value of the videoFormatId property.
*
* @return
* possible object is
* {@link String }
*
*/
public UUID getVideoFormatId() {
return videoFormatId;
}
/**
* Sets the value of the videoFormatId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVideoFormatId(UUID value) {
this.videoFormatId = value;
}
}