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

ua.windriver.model.request.ApplicationControlRequest 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.request;

import ua.windriver.model.automation.StartMethodNameOption;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
public abstract class ApplicationControlRequest {

    @JsonProperty
    private StartMethodNameOption methodName;

    public StartMethodNameOption getMethodName() {
        return methodName;
    }

    public void setMethodName(StartMethodNameOption methodName) {
        this.methodName = methodName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy