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;
/*!
* falkonry-java-client
* Copyright(c) 2017 Falkonry Inc
* MIT Licensed
*/
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import java.util.ArrayList;
import java.util.List;
import org.codehaus.jackson.annotate.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Assessment {
private String id;
private String sourceId;
private String name;
private String tenant;
private String measurement;
private String datastream;
private String live;
private String factsMesaurement;
private String production;
private String activeModel;
private String rate;
private List aprioriConditionList;
/**
*
* @return
*/
public String getRate() {
return rate;
}
/**
*
* @param rate
*/
public void setRate(String rate) {
this.rate = rate;
}
/**
*
* @return
*/
public String getMeasurement() {
return measurement;
}
/**
*
* @param measurement
*/
public void setMeasurement(String measurement) {
this.measurement = measurement;
}
// public Assessment() {
//
// }
/**
*
* @return
*/
public String getId() {
return this.id;
}
/**
*
* @param id
* @return
*/
public Assessment setId(String id) {
this.id = id;
return this;
}
/**
*
* @return
*/
public String getTenant() {
return tenant;
}
/**
*
* @return
*/
public String getDatastream() {
return datastream;
}
/**
*
* @return
*/
public String getLive() {
return live;
}
/**
*
* @param live
*/
public void setLive(String live) {
this.live = live;
}
/**
*
* @return
*/
public String getFactsMesaurement() {
return factsMesaurement;
}
/**
*
* @return
*/
public String getProduction() {
return production;
}
/**
*
* @return
*/
public String getActiveModel() {
return activeModel;
}
/**
*
* @return
*/
public String getSourceId() {
return sourceId;
}
/**
*
* @param sourceId
* @return
*/
public Assessment setSourceId(String sourceId) {
this.sourceId = sourceId;
return this;
}
/**
*
* @return
*/
public String getName() {
return this.name;
}
/**
*
* @param name
* @return
*/
public Assessment setName(String name) {
this.name = name;
return this;
}
/**
*
* @return
*/
@JsonProperty("tenant")
public String getAccount() {
return tenant;
}
/**
*
* @param account
* @return
*/
@JsonProperty("tenant")
public Assessment setAccount(String account) {
this.tenant = account;
return this;
}
public List getAprioriConditionList() {
return aprioriConditionList;
}
public void setAprioriConditionList(List aprioriConditionList) {
this.aprioriConditionList = aprioriConditionList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy