All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ua.windriver.model.response.AvailableNodesResponse Maven / Gradle / Ivy

Go to download

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