Skip to content

Commit 87d4f90

Browse files
committed
feat: update apache tinkerpop api
Signed-off-by: Otavio Santana <[email protected]>
1 parent 01e80c2 commit 87d4f90

File tree

81 files changed

+139
-139
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+139
-139
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* Otavio Santana
1414
*/
15-
package org.eclipse.jnosql.databases.tinkerpop.communication.graph;
15+
package org.eclipse.jnosql.databases.tinkerpop.communication;
1616

1717
import org.apache.tinkerpop.gremlin.structure.Vertex;
1818
import org.eclipse.jnosql.communication.semistructured.CommunicationEntity;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* Otavio Santana
1414
*/
15-
package org.eclipse.jnosql.databases.tinkerpop.communication.graph;
15+
package org.eclipse.jnosql.databases.tinkerpop.communication;
1616

1717
import jakarta.data.exceptions.EmptyResultException;
1818
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* Otavio Santana
1414
*/
15-
package org.eclipse.jnosql.databases.tinkerpop.communication.graph;
15+
package org.eclipse.jnosql.databases.tinkerpop.communication;
1616

1717
import org.apache.tinkerpop.gremlin.structure.Graph;
1818
import org.eclipse.jnosql.communication.CommunicationException;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* Otavio Santana
1414
*/
15-
package org.eclipse.jnosql.databases.tinkerpop.communication.graph;
15+
package org.eclipse.jnosql.databases.tinkerpop.communication;
1616

1717
import org.apache.tinkerpop.gremlin.structure.Graph;
1818
import org.eclipse.jnosql.communication.semistructured.DatabaseManager;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* Otavio Santana
1414
*/
15-
package org.eclipse.jnosql.databases.tinkerpop.communication.graph;
15+
package org.eclipse.jnosql.databases.tinkerpop.communication;
1616

1717
import org.apache.tinkerpop.gremlin.structure.Graph;
1818
import org.apache.tinkerpop.gremlin.structure.Transaction;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* Otavio Santana
1414
*/
15-
package org.eclipse.jnosql.databases.tinkerpop.communication.graph;
15+
package org.eclipse.jnosql.databases.tinkerpop.communication;
1616

1717
import org.apache.tinkerpop.gremlin.process.traversal.P;
1818
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* in the JNoSQL project. It contains interfaces, classes, and utilities that enable developers to
1919
* communicate with and manage graph databases.
2020
* <p>
21-
* The core interface in this package is {@link org.eclipse.jnosql.databases.tinkerpop.communication.graph.GraphDatabaseManager},
21+
* The core interface in this package is {@link org.eclipse.jnosql.databases.tinkerpop.communication.GraphDatabaseManager},
2222
* which extends {@link org.eclipse.jnosql.communication.semistructured.DatabaseManager}
2323
* and acts as a specialized extension for managing graph databases. Implementations of this interface
2424
* provide methods for interacting with the underlying graph database, executing graph traversals,
@@ -28,4 +28,4 @@
2828
* for working with different graph database technologies supported by JNoSQL.
2929
* </p>
3030
*/
31-
package org.eclipse.jnosql.databases.tinkerpop.communication.graph;
31+
package org.eclipse.jnosql.databases.tinkerpop.communication;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* Otavio Santana
1414
*/
15-
package org.eclipse.jnosql.databases.tinkerpop.mapping.graph;
15+
package org.eclipse.jnosql.databases.tinkerpop.mapping;
1616

1717
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal;
1818
import org.apache.tinkerpop.gremlin.structure.Edge;
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* Otavio Santana
1414
*/
15-
package org.eclipse.jnosql.databases.tinkerpop.mapping.graph;
15+
package org.eclipse.jnosql.databases.tinkerpop.mapping;
1616

1717
import jakarta.data.exceptions.EmptyResultException;
1818
import jakarta.data.exceptions.NonUniqueResultException;
@@ -25,9 +25,9 @@
2525
import org.apache.tinkerpop.gremlin.structure.Graph;
2626
import org.apache.tinkerpop.gremlin.structure.Transaction;
2727
import org.apache.tinkerpop.gremlin.structure.Vertex;
28-
import org.eclipse.jnosql.databases.tinkerpop.communication.graph.CommunicationEntityConverter;
29-
import org.eclipse.jnosql.databases.tinkerpop.communication.graph.GraphDatabaseManager;
30-
import org.eclipse.jnosql.databases.tinkerpop.communication.graph.GraphTransactionUtil;
28+
import org.eclipse.jnosql.databases.tinkerpop.communication.CommunicationEntityConverter;
29+
import org.eclipse.jnosql.databases.tinkerpop.communication.GraphDatabaseManager;
30+
import org.eclipse.jnosql.databases.tinkerpop.communication.GraphTransactionUtil;
3131
import org.eclipse.jnosql.mapping.IdNotFoundException;
3232
import org.eclipse.jnosql.mapping.metadata.EntityMetadata;
3333
import org.eclipse.jnosql.mapping.metadata.FieldMetadata;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* Otavio Santana
1414
*/
15-
package org.eclipse.jnosql.databases.tinkerpop.mapping.graph;
15+
package org.eclipse.jnosql.databases.tinkerpop.mapping;
1616

1717
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal;
1818
import org.apache.tinkerpop.gremlin.structure.Vertex;

0 commit comments

Comments
 (0)