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