com.vikingbrain.nmt.responses.metadatadatabase.ObjectCategoryVideoWall 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.metadatadatabase;
import java.util.ArrayList;
import java.util.List;
import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.Path;
import org.simpleframework.xml.Root;
/**
*
* @author vikingBrain
*/
@Root(name="all_videos", strict=false)
public class ObjectCategoryVideoWall {
@Path("all_videos")
@ElementList(inline = true, entry = "video")
private List videos = new ArrayList();
public final List getVideos() {
return videos;
}
public final void setVideos(List videos) {
this.videos = videos;
}
}