Example usage for com.fasterxml.jackson.databind.ser.impl SimpleBeanPropertyFilter.SerializeExceptFilter subclass-usage

List of usage examples for com.fasterxml.jackson.databind.ser.impl SimpleBeanPropertyFilter.SerializeExceptFilter subclass-usage

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.ser.impl SimpleBeanPropertyFilter.SerializeExceptFilter subclass-usage.

Usage

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

/**
 * Jackson property filter that replaces values of fields annotated with @LogRedact with a string value of
 * "<REDACTED>".  If constructed with 'allowNull' as true then fields whose value is null will be output
 * as 'null' rather than a filtered string.
 *
 * @author Gil Markham (gil at groupon dot com)