All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.falkonry.helper.models.Assessment Maven / Gradle / Ivy

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