run.facet.agent.java.Sensor Maven / Gradle / Ivy
package run.facet.agent.java;
import java.util.ArrayList;
import java.util.List;
public class Sensor {
private List annotations;
private String returnType;
public Sensor() {
annotations = new ArrayList<>();
}
public List getAnnotations() {
return annotations;
}
public void setAnnotations(List annotations) {
this.annotations = annotations;
}
public String getReturnType() {
return returnType;
}
public void setReturnType(String returnType) {
this.returnType = returnType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy