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

com.vikingbrain.nmt.responses.playback.ObjectQueueElement 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="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
				+ "]";
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy