
ua.windriver.model.response.AvailableNodesResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of windriver-java Show documentation
Show all versions of windriver-java Show documentation
A Java client for the WinDriver Agent. This client allows you to automate Windows desktop applications
using Java.
The newest version!
package ua.windriver.model.response;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.HashMap;
@JsonIgnoreProperties(ignoreUnknown = true)
public class AvailableNodesResponse {
@JsonProperty("AllAvailableNodes")
private HashMap availableNodes;
public HashMap getAvailableNodes() {
return availableNodes;
}
public void setAvailableNodes(HashMap availableNodes) {
this.availableNodes = availableNodes;
}
@Override
public String toString() {
return "AvailableNodesResponse{" +
"availableNodes=" + availableNodes +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy