This repository was archived by the owner on Sep 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +17
-17
lines changed
src/main/java/com/arangodb/tinkerpop/gremlin Expand file tree Collapse file tree 6 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 3333 <dependencies >
3434 <dependency >
3535 <groupId >com.arangodb</groupId >
36- <artifactId >arangodb-java-driver</artifactId >
36+ <artifactId >arangodb-java-driver-shaded </artifactId >
3737 <version >${arangodb-java-driver.version} </version >
3838 </dependency >
3939 <dependency >
Original file line number Diff line number Diff line change 88
99package com .arangodb .tinkerpop .gremlin .client ;
1010
11- import com .arangodb .serde .jackson . Id ;
12- import com .arangodb .serde .jackson . Key ;
13- import com .arangodb .serde .jackson . Rev ;
11+ import com .arangodb .serde .InternalId ;
12+ import com .arangodb .serde .InternalKey ;
13+ import com .arangodb .serde .InternalRev ;
1414import com .arangodb .tinkerpop .gremlin .structure .ArangoDBGraph ;
15- import com .fasterxml .jackson .annotation .JsonIgnore ;
16- import com .fasterxml .jackson .annotation .JsonProperty ;
15+ import com .arangodb . shaded . fasterxml .jackson .annotation .JsonIgnore ;
16+ import com .arangodb . shaded . fasterxml .jackson .annotation .JsonProperty ;
1717
1818/**
1919 * The ArangoDB BaseBaseDocument provides the internal fields required for the driver to correctly
@@ -26,17 +26,17 @@ public abstract class ArangoDBBaseDocument {
2626
2727 /** ArangoDB internal id. */
2828
29- @ Id
29+ @ InternalId
3030 protected String _id ;
3131
3232 /** ArangoDB internal revision. */
3333
34- @ Rev
34+ @ InternalRev
3535 protected String _rev ;
3636
3737 /** ArangoDB internal name - mapped to TinkerPop's ID. */
3838
39- @ Key
39+ @ InternalKey
4040 protected String _key ;
4141
4242 /** The label of the document */
Original file line number Diff line number Diff line change 88
99package com .arangodb .tinkerpop .gremlin .client ;
1010
11- import com .arangodb .serde .jackson . From ;
12- import com .arangodb .serde .jackson . To ;
11+ import com .arangodb .serde .InternalFrom ;
12+ import com .arangodb .serde .InternalTo ;
1313import com .arangodb .tinkerpop .gremlin .structure .ArangoDBGraph ;
1414
1515/**
@@ -24,12 +24,12 @@ public abstract class ArangoDBBaseEdge extends ArangoDBBaseDocument {
2424
2525 /** ArangoDB internal from. */
2626
27- @ From
27+ @ InternalFrom
2828 private String _from ;
2929
3030 /** ArangoDB internal to. */
3131
32- @ To
32+ @ InternalTo
3333 private String _to ;
3434
3535 /**
Original file line number Diff line number Diff line change 1010
1111import java .util .NoSuchElementException ;
1212
13- import com .fasterxml .jackson .annotation .JsonIgnore ;
14- import com .fasterxml .jackson .annotation .JsonProperty ;
13+ import com .arangodb . shaded . fasterxml .jackson .annotation .JsonIgnore ;
14+ import com .arangodb . shaded . fasterxml .jackson .annotation .JsonProperty ;
1515import org .apache .tinkerpop .gremlin .structure .Property ;
1616import org .apache .tinkerpop .gremlin .structure .util .ElementHelper ;
1717import org .apache .tinkerpop .gremlin .structure .util .StringFactory ;
Original file line number Diff line number Diff line change 1414import java .util .Optional ;
1515import java .util .Set ;
1616
17- import com .fasterxml .jackson .annotation .JsonProperty ;
17+ import com .arangodb . shaded . fasterxml .jackson .annotation .JsonProperty ;
1818import org .apache .tinkerpop .gremlin .structure .Graph ;
1919import org .apache .tinkerpop .gremlin .structure .util .GraphVariableHelper ;
2020import org .apache .tinkerpop .gremlin .structure .util .StringFactory ;
Original file line number Diff line number Diff line change 1414import com .arangodb .entity .EdgeDefinition ;
1515import com .arangodb .entity .GraphEntity ;
1616import com .arangodb .model .GraphCreateOptions ;
17+ import com .arangodb .shaded .fasterxml .jackson .databind .ObjectMapper ;
1718import com .arangodb .tinkerpop .gremlin .client .ArangoDBBaseDocument ;
1819import com .arangodb .tinkerpop .gremlin .client .ArangoDBGraphClient ;
1920import com .arangodb .tinkerpop .gremlin .client .ArangoDBGraphException ;
3334import java .util .stream .Collectors ;
3435import java .util .stream .IntStream ;
3536
36- import com .fasterxml .jackson .databind .ObjectMapper ;
3737import org .apache .commons .collections4 .CollectionUtils ;
3838import org .apache .tinkerpop .gremlin .structure .Direction ;
3939import org .slf4j .Logger ;
You can’t perform that action at this time.
0 commit comments