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 33
33
<dependencies >
34
34
<dependency >
35
35
<groupId >com.arangodb</groupId >
36
- <artifactId >arangodb-java-driver</artifactId >
36
+ <artifactId >arangodb-java-driver-shaded </artifactId >
37
37
<version >${arangodb-java-driver.version} </version >
38
38
</dependency >
39
39
<dependency >
Original file line number Diff line number Diff line change 8
8
9
9
package com .arangodb .tinkerpop .gremlin .client ;
10
10
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 ;
14
14
import 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 ;
17
17
18
18
/**
19
19
* The ArangoDB BaseBaseDocument provides the internal fields required for the driver to correctly
@@ -26,17 +26,17 @@ public abstract class ArangoDBBaseDocument {
26
26
27
27
/** ArangoDB internal id. */
28
28
29
- @ Id
29
+ @ InternalId
30
30
protected String _id ;
31
31
32
32
/** ArangoDB internal revision. */
33
33
34
- @ Rev
34
+ @ InternalRev
35
35
protected String _rev ;
36
36
37
37
/** ArangoDB internal name - mapped to TinkerPop's ID. */
38
38
39
- @ Key
39
+ @ InternalKey
40
40
protected String _key ;
41
41
42
42
/** The label of the document */
Original file line number Diff line number Diff line change 8
8
9
9
package com .arangodb .tinkerpop .gremlin .client ;
10
10
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 ;
13
13
import com .arangodb .tinkerpop .gremlin .structure .ArangoDBGraph ;
14
14
15
15
/**
@@ -24,12 +24,12 @@ public abstract class ArangoDBBaseEdge extends ArangoDBBaseDocument {
24
24
25
25
/** ArangoDB internal from. */
26
26
27
- @ From
27
+ @ InternalFrom
28
28
private String _from ;
29
29
30
30
/** ArangoDB internal to. */
31
31
32
- @ To
32
+ @ InternalTo
33
33
private String _to ;
34
34
35
35
/**
Original file line number Diff line number Diff line change 10
10
11
11
import java .util .NoSuchElementException ;
12
12
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 ;
15
15
import org .apache .tinkerpop .gremlin .structure .Property ;
16
16
import org .apache .tinkerpop .gremlin .structure .util .ElementHelper ;
17
17
import org .apache .tinkerpop .gremlin .structure .util .StringFactory ;
Original file line number Diff line number Diff line change 14
14
import java .util .Optional ;
15
15
import java .util .Set ;
16
16
17
- import com .fasterxml .jackson .annotation .JsonProperty ;
17
+ import com .arangodb . shaded . fasterxml .jackson .annotation .JsonProperty ;
18
18
import org .apache .tinkerpop .gremlin .structure .Graph ;
19
19
import org .apache .tinkerpop .gremlin .structure .util .GraphVariableHelper ;
20
20
import org .apache .tinkerpop .gremlin .structure .util .StringFactory ;
Original file line number Diff line number Diff line change 14
14
import com .arangodb .entity .EdgeDefinition ;
15
15
import com .arangodb .entity .GraphEntity ;
16
16
import com .arangodb .model .GraphCreateOptions ;
17
+ import com .arangodb .shaded .fasterxml .jackson .databind .ObjectMapper ;
17
18
import com .arangodb .tinkerpop .gremlin .client .ArangoDBBaseDocument ;
18
19
import com .arangodb .tinkerpop .gremlin .client .ArangoDBGraphClient ;
19
20
import com .arangodb .tinkerpop .gremlin .client .ArangoDBGraphException ;
33
34
import java .util .stream .Collectors ;
34
35
import java .util .stream .IntStream ;
35
36
36
- import com .fasterxml .jackson .databind .ObjectMapper ;
37
37
import org .apache .commons .collections4 .CollectionUtils ;
38
38
import org .apache .tinkerpop .gremlin .structure .Direction ;
39
39
import org .slf4j .Logger ;
You can’t perform that action at this time.
0 commit comments