com.arangodb.serde.jsonb.Rev Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonb-serde Show documentation
Show all versions of jsonb-serde Show documentation
JsonB Serde module for ArangoDB Java Driver
package com.arangodb.serde.jsonb;
import jakarta.json.bind.annotation.JsonbAnnotation;
import jakarta.json.bind.annotation.JsonbProperty;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author Michele Rastelli
*/
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@JsonbAnnotation
@JsonbProperty("_rev")
public @interface Rev {
}