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