org.n52.sensorthings.ObservedProperty 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;
import com.google.gson.annotations.SerializedName;
/**
* @author Jan Schulte
*/
public class ObservedProperty extends SensorThingsElement {
private String definition;
@SerializedName("[email protected]")
private String datastreamsLink;
/**
* @return the definition
*/
public String getDefinition() {
return definition;
}
/**
* @param definition the definition to set
*/
public void setDefinition(String definition) {
this.definition = definition;
}
public String getDatastreamsLink() {
return datastreamsLink;
}
public void setDatastreamsLink(String datastreamsLink) {
this.datastreamsLink = datastreamsLink;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy