![JAR search and dependency download from the Maven repository](/logo.png)
org.qas.qtest.api.services.host.model.UpdateAutomationHostRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtest-sdk-java Show documentation
Show all versions of qtest-sdk-java Show documentation
A java SDK client wrap qTest REST API
The newest version!
package org.qas.qtest.api.services.host.model;
public class UpdateAutomationHostRequest extends CreateAutomationHostRequest {
private long id;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public UpdateAutomationHostRequest withId(long id) {
setId(id);
return this;
}
@Override
public String toString() {
return "UpdateAutomationHostRequest{" +
"id=" + id + "_" + super.toString() +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy