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

org.testobject.rest.api.model.DeviceNameQuery Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
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