com.arangodb.serde.jackson.json.JacksonJsonSerdeProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-serde-json Show documentation
Show all versions of jackson-serde-json Show documentation
Jackson Serde JSON module for ArangoDB Java Driver
package com.arangodb.serde.jackson.json;
import com.arangodb.ContentType;
import com.arangodb.serde.ArangoSerde;
import com.arangodb.serde.ArangoSerdeProvider;
import com.arangodb.serde.jackson.JacksonSerde;
public class JacksonJsonSerdeProvider implements ArangoSerdeProvider {
@Override
public ArangoSerde create() {
return JacksonSerde.of(ContentType.JSON);
}
@Override
public ContentType getContentType() {
return ContentType.JSON;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy