You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jnosql-tinkerpop/src/main/java/org/eclipse/jnosql/databases/tinkerpop/mapping/configuration/AbstractTinkerpopConfiguration.java
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,27 @@
24
24
importjava.util.Objects;
25
25
importjava.util.logging.Logger;
26
26
27
+
/**
28
+
* An abstract configuration class that serves as an adapter to integrate Apache TinkerPop's {@link Graph}
29
+
* with Eclipse JNoSQL. This class implements a template method pattern to provide a standardized way
30
+
* to create and manage graph database instances.
31
+
* <p>
32
+
* Subclasses are required to implement the {@link #graph(Settings)} method to provide the specific
33
+
* {@link Graph} instance based on the given settings.
0 commit comments