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

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

There is a newer version: 2.1.1
Show newest version
package com.falkonry.helper.models;

/*!
 * falkonry-java-client
 * Copyright(c) 2016 Falkonry Inc
 * MIT Licensed
 */

import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;

import java.util.List;

@JsonIgnoreProperties(ignoreUnknown=true)

public class Pipeline {
  private String id;
  private String sourceId;
  private String name;
  private String tenant;
  private String eventbuffer;
  private String inputMeasurement;
  private String entityIdentifier;
  private String entityName;
  private String createdBy;
  private Long createTime;
  private String updatedBy;
  private Long updateTime;
  private List inputList;
  private List assessmentList;
  private List publicationList;
  private Long earliestDataPoint;
  private Long latestDataPoint;
  private List modelRevisionList;
  private List outflowHistory;
  private String status;
  private String outflowStatus;
  private StatsMeasurementMap statsMeasurementMap;
  private String type;


  public String getOutflowStatus() {
    return outflowStatus;
  }

  public void setOutflowStatus(String outflowStatus) {
    this.outflowStatus = outflowStatus;
  }

  public String getStatus() {
    return status;
  }

  public void setStatus(String status) {
    this.status = status;
  }

  public String getName() {
    return name;
  }

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

  public String getId(){
    return this.id;
  }

  public Pipeline setId(String id) {
    this.id = id;
    return this;
  }

  public String getSourceId() {
    return sourceId;
  }

  public Pipeline setSourceId(String sourceId) {
    this.sourceId = sourceId;
    return this;
  }

  @JsonProperty("tenant")
  public String getAccount() {
    return tenant;
  }

  @JsonProperty("tenant")
  public Pipeline setAccount(String account) {
    this.tenant = account;
    return this;
  }

  @JsonProperty("input")
  public String getEventbuffer() {
    return eventbuffer;
  }

  @JsonProperty("input")
  public Pipeline setEventbuffer(String eventbuffer) {
    this.eventbuffer = eventbuffer;
    return this;
  }

  public String getInputMeasurement() {
    return inputMeasurement;
  }

  public Pipeline setInputMeasurement(String inputMeasurement) {
    this.inputMeasurement = inputMeasurement;
    return this;
  }

  public String getEntityIdentifier() {
    return entityIdentifier;
  }

  @JsonProperty("entityName")
  public String getEntityName() {
    return entityName;
  }

  public String getCreatedBy() {
    return createdBy;
  }

  public Pipeline setCreatedBy(String createdBy) {
    this.createdBy = createdBy;
    return this;
  }

  public Long getCreateTime() {
    return createTime;
  }

  public Pipeline setCreateTime(Long createTime) {
    this.createTime = createTime;
    return this;
  }

  public String getUpdatedBy() {
    return updatedBy;
  }

  public Pipeline setUpdatedBy(String updatedBy) {
    this.updatedBy = updatedBy;
    return this;
  }

  public Long getUpdateTime() {
    return updateTime;
  }

  public Pipeline setUpdateTime(Long updateTime) {
    this.updateTime = updateTime;
    return this;
  }

  public List getInputList() {
    return inputList;
  }

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

  public List getAssessmentList() {
    return assessmentList;
  }

  public Pipeline setAssessmentList(List assessmentList) {
    this.assessmentList = assessmentList;
    return this;
  }

  public List getPublicationList() {
    return publicationList;
  }

  public Pipeline setPublicationList(List publicationList) {
    this.publicationList = publicationList;
    return this;
  }

  public Long getEarliestDataPoint() {
    return earliestDataPoint;
  }

  public Pipeline setEarliestDataPoint(Long earliestDataPoint) {
    this.earliestDataPoint = earliestDataPoint;
    return this;
  }

  public Long getLatestDataPoint() {
    return latestDataPoint;
  }

  public Pipeline setLatestDataPoint(Long latestDataPoint) {
    this.latestDataPoint = latestDataPoint;
    return this;
  }

  public List getModelRevisionList() {
    return modelRevisionList;
  }

  public Pipeline setModelRevisionList(List modelRevisionList) {
    this.modelRevisionList = modelRevisionList;
    return this;
  }

  public List getOutflowHistory() {
    return outflowHistory;
  }

  public Pipeline setOutflowHistory(List outflowHistory) {
    this.outflowHistory = outflowHistory;
    return this;
  }

  public StatsMeasurementMap getStatsMeasurementMap() {
    return statsMeasurementMap;
  }

  public void setStatsMeasurementMap(StatsMeasurementMap statsMeasurementMap) {
    this.statsMeasurementMap = statsMeasurementMap;
  }

  public String getType() {
    return type;
  }

  public Pipeline setType(String type) {
    this.type = type;
    return this;
  }
}