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

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

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

public class ApiImporterTask extends TriggeredTask {
  public String js;

  public String getJs() {
    return js;
  }

  public void setJs(String js) {
    this.js = js;
  }

  // -------------------------------
  // BUILDER
  // -------------------------------
  public static class Builder extends Task.Builder {
    public Builder setJs(String o) {
      base.js = o;
      return this;
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy