
com.falkonry.helper.models.Assessment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Falkonry Java Client to access Condition Prediction APIs.
package com.falkonry.helper.models;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import java.util.ArrayList;
import java.util.List;
/*!
* falkonry-java-client
* Copyright(c) 2016 Falkonry Inc
* MIT Licensed
*/
@JsonIgnoreProperties(ignoreUnknown=true)
public class Assessment {
private String key;
private String name;
private String measurement;
private String episodeMeasurement;
private String verificationMeasurement;
private List inputList = new ArrayList();
private List aprioriConditionList = new ArrayList();
public Assessment() {
}
public String getKey() {
return this.key;
}
public Assessment setKey(String key) {
this.key = key;
return this;
}
public String getName() {
return this.name;
}
public Assessment setName(String name) {
this.name = name;
return this;
}
public List getInputList() {
return this.inputList;
}
public Assessment setInputList(List inputList) {
this.inputList = inputList;
return this;
}
public List getAprioriConditionList() {
return this.aprioriConditionList;
}
public Assessment setAprioriConditionList(List aprioriConditionList) {
this.aprioriConditionList = aprioriConditionList;
return this;
}
public String getMeasurement() {
return measurement;
}
public void setMeasurement(String measurement) {
this.measurement = measurement;
}
public String getVerificationMeasurement() {
return verificationMeasurement;
}
public void setVerificationMeasurement(String verificationMeasurement) {
this.verificationMeasurement = verificationMeasurement;
}
public String getEpisodeMeasurement() {
return episodeMeasurement;
}
public void setEpisodeMeasurement(String episodeMeasurement) {
this.episodeMeasurement = episodeMeasurement;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy