Example usage for com.fasterxml.jackson.databind.introspect JacksonAnnotationIntrospector subclass-usage

List of usage examples for com.fasterxml.jackson.databind.introspect JacksonAnnotationIntrospector subclass-usage

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.introspect JacksonAnnotationIntrospector subclass-usage.

Usage

From source file com.arpnetworking.logback.jackson.StenoAnnotationIntrospector.java

/**
 * Jackson AnnotationIntrospector that:
 * <ul>
 * <li>Forces the RedactionFilter's ID to be placed on all classes.</li>
 * <li>Support LogValue annotation optionally falling back to JsonValue.</li>
 * </ul>

From source file org.craftercms.commons.jackson.mvc.CrafterJacksonAnnotationIntrospector.java

/**
 * Extends JacksonAnnotationIntrospector so it will always a filter (so @JsonFilter) annotation is not needed.
 */
public class CrafterJacksonAnnotationIntrospector extends JacksonAnnotationIntrospector {
    private static final long serialVersionUID = -4614283468824831495L;

From source file net.kuujo.vertigo.util.serialization.impl.InclusiveAnnotationIntrospector.java

/**
 * An annotation introspector that automatically includes primitives and their
 * wrappers into all serializations. Additionally, any clas that implements the
 * {@link JsonSerializable} interface will be automatically included for serialization.
 * This allows all Vertigo serializables to be automatically serialized by the
 * default serializer. 

From source file org.apache.ode.jacob.soup.jackson.JacobJacksonAnnotationIntrospector.java

/**
 * Customized JacksonAnnotationIntrospector that configures Jackson
 * to deal with some specialties of Jacob's execution queue.
 * 
 * @author Tammo van Lessen
 *