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

com.arangodb.internal.serde.UserDataInside Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
package com.arangodb.internal.serde;

import com.arangodb.shaded.fasterxml.jackson.annotation.JacksonAnnotationsInside;
import com.arangodb.shaded.fasterxml.jackson.annotation.JsonInclude;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marker annotation for collections or map fields whose values need to be serialized/deserialized using the user serde.
 */
@Target({ElementType.METHOD, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@JsonInclude(value = JsonInclude.Include.NON_NULL)
@JacksonAnnotationsInside
public @interface UserDataInside {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy