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

com.dragpools.function.DragFunction Maven / Gradle / Ivy

Go to download

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