com.fitbur.fasterxml.jackson.databind.annotation.JsonNaming Maven / Gradle / Ivy
package com.fitbur.fasterxml.jackson.databind.annotation;
import java.lang.annotation.*;
import com.fitbur.fasterxml.jackson.databind.PropertyNamingStrategy;
/**
* Annotation that can be used to indicate a {@link PropertyNamingStrategy}
* to use for annotated class. Overrides the global (com.fitburfault) strategy.
*
* @since 2.1
*/
@Target({ElementType.ANNOTATION_TYPE, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@com.fitbur.fasterxml.jackson.annotation.JacksonAnnotation
public @interface JsonNaming
{
public Class extends PropertyNamingStrategy> value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy