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

com.flowthings.client.domain.AvConnection Maven / Gradle / Ivy

There is a newer version: 0.9.3.2
Show newest version
package com.flowthings.client.domain;

public class AvConnection extends FlowDomainObject {
  protected String companyId;
  protected String companyName;
  protected String description;
  protected String destination;
  protected String displayName;
  protected Integer periodicity;
  protected Integer reportFrequency;
  protected String status;
  protected Boolean disabled;

  public String getCompanyId() {
    return companyId;
  }

  public void setCompanyId(String s) {
    this.companyId = s;
  }

  public String getCompanyName() {
    return companyName;
  }

  public void setCompanyName(String s) {
    this.companyName = s;
  }

  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }

  public String getDestination() {
    return destination;
  }

  public void setDestination(String destination) {
    this.destination = destination;
  }

  public String getDisplayName() {
    return displayName;
  }

  public void setDisplayName(String displayName) {
    this.displayName = displayName;
  }

  public Integer getPeriodicity() {
    return periodicity;
  }

  public void setPeriodicity(Integer periodicity) {
    this.periodicity = periodicity;
  }

  public Integer getReportFrequency() {
    return reportFrequency;
  }

  public void setReportFrequency(Integer reportFrequency) {
    this.reportFrequency = reportFrequency;
  }

  public String getStatus() {
    return status;
  }

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

  public Boolean getDisabled() {
    return disabled;
  }

  public void setDisabled(Boolean disabled) {
    this.disabled = disabled;
  }

  @Override
  public String toString() {
    return "AvConnection [company=" + companyId + ", toString()=" + super.toString() + "]";
  }

  public static class Builder extends FlowDomainObject.Builder {
    public Builder setCompanyId(String s) {
      base.setCompanyId(s);
      return this;
    }

    public Builder setDescription(String s) {
      base.setDescription(s);
      return this;
    }

    public Builder setDestination(String s) {
      base.setDestination(s);
      return this;
    }

    public Builder setDisplayName(String s) {
      base.setDisplayName(s);
      return this;
    }

    public Builder setPeriodicity(Integer s) {
      base.setPeriodicity(s);
      return this;
    }

    public Builder setReportFrequency(Integer s) {
      base.setReportFrequency(s);
      return this;
    }

    public Builder setStatus(String s) {
      base.setStatus(s);
      return this;
    }

    public Builder setDisabled(Boolean s) {
      base.setDisabled(s);
      return this;
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy