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

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

package org.eroq.plugin.neo4jclient;

import java.util.Map;

public class Neo4jRelationship extends Neo4jMap {
	
	protected long id;
	protected String type;
	protected Long startNode;
	protected Long endNode;

	public Neo4jRelationship(long id, String type, Long startNode, Long endNode, Map values) {
		super(values);
		this.id = id;
		this.type = type;
		this.startNode = startNode;
		this.endNode = endNode;
	}

	public long getId() {
		return id;
	}

	public String getType() {
		return type;
	}

	public Long getStartNode() {
		return startNode;
	}

	public Long getEndNode() {
		return endNode;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy