com.glookast.api.capture.playout.RequestPosition 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.XmlType;
/**
* Java class for RequestPosition complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RequestPosition">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="position" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RequestPosition", propOrder = {
"position"
})
public class RequestPosition implements Serializable
{
protected long position;
/**
* Default no-arg constructor
*
*/
public RequestPosition() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public RequestPosition(final long position) {
this.position = position;
}
/**
* Gets the value of the position property.
*
*/
public long getPosition() {
return position;
}
/**
* Sets the value of the position property.
*
*/
public void setPosition(long value) {
this.position = value;
}
}