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

org.eroq.plugin.neo4jclient.Neo4jResult Maven / Gradle / Ivy

package org.eroq.plugin.neo4jclient;

import java.util.List;

public class Neo4jResult {
	
	protected List columns;
	protected List data;
	
	public Neo4jResult(List columns, List data) {
		this.columns = columns;
		this.data = data;
	}
	
	public List getColumns() {
		return columns;
	}
	public List getData() {
		return data;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy