com.vikingbrain.nmt.responses.playback.ObjectNonDvdOffsets Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thedavidbox-client4j Show documentation
Show all versions of thedavidbox-client4j Show documentation
A Java HTTP client for consuming TheDavidBox Service API of Networked Media Tank devices
/**
*
*/
package com.vikingbrain.nmt.responses.playback;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;
/**
*
* @author vikingBrain
*/
@Root(name="offsets", strict=false)
public class ObjectNonDvdOffsets {
@Element(name="maxOffset", required=false)
private String maxOffset;
@Element(name="minOffset", required=false)
private String minOffset;
@Element(name="stepOffset", required=false)
private String stepOffset;
/**
* Getter of property.
* @return the maxOffset
*/
public final String getMaxOffset() {
return maxOffset;
}
/**
* Setter of property.
* @param maxOffset the maxOffset to set
*/
public final void setMaxOffset(String maxOffset) {
this.maxOffset = maxOffset;
}
/**
* Getter of property.
* @return the minOffset
*/
public final String getMinOffset() {
return minOffset;
}
/**
* Setter of property.
* @param minOffset the minOffset to set
*/
public final void setMinOffset(String minOffset) {
this.minOffset = minOffset;
}
/**
* Getter of property.
* @return the stepOffset
*/
public final String getStepOffset() {
return stepOffset;
}
/**
* Setter of property.
* @param stepOffset the stepOffset to set
*/
public final void setStepOffset(String stepOffset) {
this.stepOffset = stepOffset;
}
@Override
public String toString() {
return "ObjectOffsets [maxOffset=" + maxOffset + ", minOffset="
+ minOffset + ", stepOffset=" + stepOffset + "]";
}
}