com.testvagrant.monitor.responses.DevicesResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optimus-cloud-monitor Show documentation
Show all versions of optimus-cloud-monitor Show documentation
The Java Client provides access to Optimus cloud for all java based projects.
The newest version!
package com.testvagrant.monitor.responses;
import com.testvagrant.monitor.requests.Device;
import com.testvagrant.monitor.requests.Link;
import java.util.List;
public class DevicesResponse {
private List links;
private List content;
public List getLinks() {
return links;
}
public void setLinks(List links) {
this.links = links;
}
public List getContent() {
return content;
}
public void setContent(List content) {
this.content = content;
}
}