com.glookast.api.capture.playout.RequestTimecodeSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-capture-playout Show documentation
Show all versions of api-capture-playout Show documentation
Generated artifacts used for interfacing with Glookast Products
package com.glookast.api.capture.playout;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import com.glookast.commons.timecode.TimecodeSource;
/**
* Java class for RequestTimecodeSource complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RequestTimecodeSource">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="timecodeSource" type="{http://timecode.commons.glookast.com}TimecodeSource"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RequestTimecodeSource", propOrder = {
"timecodeSource"
})
public class RequestTimecodeSource implements Serializable
{
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected TimecodeSource timecodeSource;
/**
* Default no-arg constructor
*
*/
public RequestTimecodeSource() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public RequestTimecodeSource(final TimecodeSource timecodeSource) {
this.timecodeSource = timecodeSource;
}
/**
* Gets the value of the timecodeSource property.
*
* @return
* possible object is
* {@link TimecodeSource }
*
*/
public TimecodeSource getTimecodeSource() {
return timecodeSource;
}
/**
* Sets the value of the timecodeSource property.
*
* @param value
* allowed object is
* {@link TimecodeSource }
*
*/
public void setTimecodeSource(TimecodeSource value) {
this.timecodeSource = value;
}
}