com.vikingbrain.nmt.responses.upnp.ResponseListUpnpServer 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.upnp;
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 ResponseListUpnpServer extends ResponseSimple {
@Path("response")
@ElementList(inline = true, entry = "server")
private List upnpServers = new ArrayList();
public final List getUpnpServers() {
return upnpServers;
}
public final void setUpnpServers(List upnpServers) {
this.upnpServers = upnpServers;
}
}