Skip to content

Commit b07e75c

Browse files
committed
ArangoDB: removed JsonB serde
1 parent 6fe4c0a commit b07e75c

File tree

2 files changed

+2
-63
lines changed

2 files changed

+2
-63
lines changed

jnosql-arangodb/src/main/java/org/eclipse/jnosql/databases/arangodb/communication/ArangoDBConfiguration.java

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
*/
3131
public abstract class ArangoDBConfiguration {
3232

33-
protected ArangoDB.Builder builder = new ArangoDB.Builder()
34-
.serde(new JsonbSerde());
33+
protected ArangoDB.Builder builder = new ArangoDB.Builder();
3534

3635
/**
3736
* Adds a host in the arangodb builder
@@ -93,13 +92,7 @@ public void setUseSSL(boolean value) {
9392
}
9493

9594
/**
96-
* Set the ArangoDB serde for the user data. Note that the provided
97-
* serde must support serializing and deserializing JsonP types,
98-
* i.e. {@link jakarta.json.JsonValue} and its children.
99-
* By default, the builder is configured to use {@link JsonbSerde};
100-
* this setter allows overriding it, i.e. providing an instance of
101-
* {@link JsonbSerde} that uses a specific {@link jakarta.json.bind.Jsonb}
102-
* instance.
95+
* Set the ArangoDB serde
10396
*
10497
* @param serde the serde
10598
*/

jnosql-arangodb/src/main/java/org/eclipse/jnosql/databases/arangodb/communication/JsonbSerde.java

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)