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

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

There is a newer version: 2.1.1
Show newest version
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 AssessmentRequest {
  private String name;
  private List inputList = new ArrayList();
  private List aprioriConditionList = new ArrayList();

  public List getInputList() {
    return inputList;
  }

  public AssessmentRequest setInputList(List inputList) {
    this.inputList = inputList;
    return this;
  }

  public List getAprioriConditionList() {
    return aprioriConditionList;
  }

  public AssessmentRequest setAprioriConditionList(List aprioriConditionList) {
    this.aprioriConditionList = aprioriConditionList;
    return this;
  }

  public String getName() {

    return name;
  }

  public AssessmentRequest setName(String name) {
    this.name = name;
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy