com.vikingbrain.nmt.responses.playback.ObjectQueueElement 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="server", strict=false)
public class ObjectQueueElement {
@Element(name="fullpath")
private String fullPath;
@Element(name="index")
private String index;
/**
* Getter of property.
* @return the fullPath
*/
public final String getFullPath() {
return fullPath;
}
/**
* Setter of property.
* @param fullPath the fullPath to set
*/
public final void setFullPath(String fullPath) {
this.fullPath = fullPath;
}
/**
* Getter of property.
* @return the index
*/
public final String getIndex() {
return index;
}
/**
* Setter of property.
* @param index the index to set
*/
public final void setIndex(String index) {
this.index = index;
}
@Override
public String toString() {
return "ObjectQueueElement [fullPath=" + fullPath + ", index=" + index
+ "]";
}
}