
com.dragpools.function.DragFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of DP_CLIENT Show documentation
Show all versions of DP_CLIENT Show documentation
A simple Drag Pools Client to connect and execute Drag Queries in a Drag Pools cluster.
The newest version!
package com.dragpools.function;
/**
*
* @author Frank Jennings https://www.dragpools.io
*/
public class DragFunction {
private String functionBody = null;
public DragFunction() {
}
public DragFunction(String functionBody) {
this.functionBody = functionBody;
}
public String getFunctionBody() {
return functionBody;
}
public void setFunctionBody(String functionBody) {
this.functionBody = functionBody;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy