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