voila
voila

Reputation: 1666

Neo4j Server Plugin

I am starting with Neo4j server plugin and browsing java APIs. I found that Node is a sub-interface which extends property-container. But which class implements 'Node' class ?

What kind of magic is happening here ?

Any help

Thanks

Upvotes: 0

Views: 48

Answers (1)

Stefan Armbruster
Stefan Armbruster

Reputation: 39915

You should not rely on any implementation details. The contract is the Node interface - as long as you rely on this, you're pretty much safe when upgrading your application to a newer version of Neo4j.

In most case a Node reference is implemented using org.neo4j.kernel.impl.core.NodeProxy.

Upvotes: 1

Related Questions