All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vikingbrain.nmt.responses.playback.ObjectNonDvdOffsets Maven / Gradle / Ivy

Go to download

A Java HTTP client for consuming TheDavidBox Service API of Networked Media Tank devices

There is a newer version: 1.2.1
Show newest version
/**
 * 
 */
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 + "]";
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy