org.n52.sensorthings.ThingProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy-dao Show documentation
Show all versions of proxy-dao Show documentation
REST SPI Implementation for SOS Proxy.
package org.n52.sensorthings;
/**
* TODO JavaDoc
* @author Christian Autermann
*/
public class ThingProperties {
private String displayName;
/**
* @return the displayName
*/
public String getDisplayName() {
return displayName;
}
/**
* @param displayName the displayName to set
*/
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy