com.flowthings.client.domain.ApiImporterTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flowthings-client-core Show documentation
Show all versions of flowthings-client-core Show documentation
A client library for flowthings.io realtime event processing
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