forked from tinkerpop/blueprints
-
Notifications
You must be signed in to change notification settings - Fork 0
Ouplementations
okram edited this page Jan 14, 2011
·
2 revisions
Blueprints is a collection of interfaces. If these interfaces are implemented, then the underlying graph database is “Blueprints-enabled.” In many situations, its desirable to not expose a Blueprints-enabled graph database, but instead, to expose an implementation of another set of interfaces. In the package com.tinkerpop.blueprints.pgm.oupls
, there are “outplementations” for other popular interfaces. In this way, any Blueprints-enabled graph database can be framed within the context of that set of interfaces.
The naming convention for impls
and oupls
is as such.
-
XXXGraph
: An implementation of theGraph
interface.XXX
is modeled as aGraph
. -
GraphXXX
: An ouplementation of theGraph
interface toXXX
.Graph
is modeled as anXXX
.