org.testobject.rest.api.model.DeviceNameQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testobject-java-api Show documentation
Show all versions of testobject-java-api Show documentation
java wrapper for testobject's java apis
package org.testobject.rest.api.model;
public class DeviceNameQuery {
private final String deviceName;
public DeviceNameQuery(String deviceName) {
this.deviceName = deviceName;
}
public String getDeviceName() {
return deviceName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy