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

org.frameworkset.elasticsearch.entity.sql.SQLRestResponse Maven / Gradle / Ivy

Go to download

bboss elasticsearch client with restful and java api without elasticsearch jar dependended.

There is a newer version: 7.2.8
Show newest version
package org.frameworkset.elasticsearch.entity.sql;

import java.util.List;

public class SQLRestResponse {
	private ColumnMeta[] columns;
	private List rows;
	private String cursor;

	public SQLRestResponse() {
		// TODO Auto-generated constructor stub
	}
	public ColumnMeta[] getColumns() {
		return columns;
	}

	public void setColumns(ColumnMeta[] columns) {
		this.columns = columns;
	}

	public List getRows() {
		return rows;
	}

	public void setRows(List rows) {
		this.rows = rows;
	}

	public String getCursor() {
		return cursor;
	}

	public void setCursor(String cursor) {
		this.cursor = cursor;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy