Skip to content

Commit

Permalink
ArangoDB: removed JsonB serde
Browse files Browse the repository at this point in the history
  • Loading branch information
rashtao committed Jan 13, 2025
1 parent 6fe4c0a commit b07e75c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 63 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@
*/
public abstract class ArangoDBConfiguration {

protected ArangoDB.Builder builder = new ArangoDB.Builder()
.serde(new JsonbSerde());
protected ArangoDB.Builder builder = new ArangoDB.Builder();

/**
* Adds a host in the arangodb builder
Expand Down Expand Up @@ -93,13 +92,7 @@ public void setUseSSL(boolean value) {
}

/**
* Set the ArangoDB serde for the user data. Note that the provided
* serde must support serializing and deserializing JsonP types,
* i.e. {@link jakarta.json.JsonValue} and its children.
* By default, the builder is configured to use {@link JsonbSerde};
* this setter allows overriding it, i.e. providing an instance of
* {@link JsonbSerde} that uses a specific {@link jakarta.json.bind.Jsonb}
* instance.
* Set the ArangoDB serde
*
* @param serde the serde
*/
Expand Down

This file was deleted.

0 comments on commit b07e75c

Please sign in to comment.