
com.dragpools.query.DragQuery 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.query;
import com.dragpools.function.DragFunction;
import com.dragpools.runner.DragRunner;
import java.util.Map;
/**
*
* @author Frank Jennings https://www.dragpools.io
*/
public class DragQuery {
private DragQueryType queryType = null;
private Map headers = null;
private String postBody = null;
private String queryString = null;
private DragRunner dragRunner = null;
private DragFunction dragFunction = null;
/**
*
*/
public static class Builder {
private DragQueryType queryType = null;
private Map headers = null;
private String postBody = null;
private String queryString = null;
private DragRunner dragRunner = null;
private DragFunction dragFunction = null;
/**
*
* @param queryType
* @return
*/
public Builder withQueryType(DragQueryType queryType) {
this.queryType = queryType;
return this;
}
/**
*
* @param headers
* @return
*/
public Builder withDragHeaders(Map headers) {
this.headers = headers;
return this;
}
/**
*
* @param postBody
* @return
*/
public Builder withDragBody(String postBody) {
this.postBody = postBody;
return this;
}
/**
*
* @param queryString
* @return
*/
public Builder withQuery(String queryString) {
this.queryString = queryString;
return this;
}
/**
*
* @param dragRunner
* @return
*/
public Builder withDragRunner(DragRunner dragRunner) {
this.dragRunner = dragRunner;
return this;
}
/**
*
* @param dragFunction
* @return
*/
public Builder withDragFunction(DragFunction dragFunction) {
this.dragFunction = dragFunction;
return this;
}
/**
*
* @return
*/
public DragQuery build() {
DragQuery dQuery = new DragQuery();
dQuery.queryType = this.queryType;
dQuery.headers = this.headers;
dQuery.queryString = this.queryString;
dQuery.postBody = this.postBody;
dQuery.dragRunner = this.dragRunner;
dQuery.dragFunction = this.dragFunction;
return dQuery;
}
}
private DragQuery() {
}
/**
*
* @return
*/
public DragQueryType getQueryType() {
return queryType;
}
/**
*
* @return
*/
public Map getHeaders() {
return headers;
}
/**
*
* @return
*/
public String getPostBody() {
return postBody;
}
/**
*
* @return
*/
public String getQueryString() {
return queryString;
}
/**
*
* @return
*/
public DragRunner getDragRunner() {
return dragRunner;
}
/**
*
* @return
*/
public DragFunction getDragFunction() {
return dragFunction;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy