All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.serde.jackson.vpack.JacksonVPackSerdeProvider Maven / Gradle / Ivy

There is a newer version: 7.15.0
Show newest version
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