com.vikingbrain.nmt.responses.playback.ResponseListPlaybackSpeedVod 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 java.util.ArrayList;
import java.util.List;
import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.Path;
import org.simpleframework.xml.Root;
import com.vikingbrain.nmt.responses.ResponseSimple;
/**
*
*
* @author vikingBrain
*/
@Root(name="response", strict=false)
public class ResponseListPlaybackSpeedVod extends ResponseSimple {
@Path("response")
@ElementList(inline = true, entry = "speed")
List speeds = new ArrayList();
/**
* Getter of property.
* @return the speeds
*/
public final List getSpeeds() {
return speeds;
}
/**
* Setter of property.
* @param speeds the speeds to set
*/
public final void setSpeeds(List speeds) {
this.speeds = speeds;
}
@Override
public String toString() {
return "ResponseListPlaybackSpeedVod [speeds=" + speeds + "]";
}
}