com.falkonry.helper.models.PipelineRequest 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 org.codehaus.jackson.annotate.JsonProperty;
import java.util.List;
/*!
* falkonry-java-client
* Copyright(c) 2016 Falkonry Inc
* MIT Licensed
*/
@JsonIgnoreProperties(ignoreUnknown=true)
public class PipelineRequest {
private String name;
private String eventbuffer;
private String entityIdentifier;
private String entityName;
private List inputList;
private List assessmentList;
public String getName() {
return name;
}
public PipelineRequest setName(String name) {
this.name = name;
return this;
}
public List getAssessmentList() {
return assessmentList;
}
public PipelineRequest setAssessmentList(List assessmentList) {
this.assessmentList = assessmentList;
return this;
}
public List getInputList() {
return inputList;
}
public PipelineRequest setInputList(List inputList) {
this.inputList = inputList;
return this;
}
@JsonProperty("entityName")
public String getEntityName() {
return entityName;
}
@JsonProperty("entityName")
public PipelineRequest setEntityName(String entityName) {
this.entityName = entityName;
return this;
}
public String getEntityIdentifier() {
return entityIdentifier;
}
public PipelineRequest setEntityIdentifier(String entityIdentifier) {
this.entityIdentifier = entityIdentifier;
return this;
}
@JsonProperty("input")
public String getEventbuffer() {
return eventbuffer;
}
@JsonProperty("input")
public PipelineRequest setEventbuffer(String eventbuffer) {
this.eventbuffer = eventbuffer;
return this;
}
}