Class CensorshipModule

java.lang.Object
com.fasterxml.jackson.databind.Module
com.fasterxml.jackson.databind.module.SimpleModule
craterdog.smart.CensorshipModule
All Implemented Interfaces:
com.fasterxml.jackson.core.Versioned, Serializable

public class CensorshipModule extends com.fasterxml.jackson.databind.module.SimpleModule
This class is a Jackson module that can be added to an object mapper to handle the masking of sensitive attributes during string serialization. Any string attributes that are annotated with the @Sensitive(mask="some pattern") annotation will be masked accordingly.
Author:
Yan Ma
See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.Module

    com.fasterxml.jackson.databind.Module.SetupContext
  • Field Summary

    Fields inherited from class com.fasterxml.jackson.databind.module.SimpleModule

    _abstractTypes, _deserializerModifier, _deserializers, _hasExplicitName, _keyDeserializers, _keySerializers, _mixins, _name, _namingStrategy, _serializerModifier, _serializers, _subtypes, _valueInstantiators, _version
  • Constructor Summary

    Constructors
    Constructor
    Description
    The default constructor adds a censorship serializer that has no mask defined.
  • Method Summary

    Methods inherited from class com.fasterxml.jackson.databind.module.SimpleModule

    _checkNotNull, addAbstractTypeMapping, addDeserializer, addKeyDeserializer, addKeySerializer, addSerializer, addSerializer, addValueInstantiator, getModuleName, getTypeId, registerSubtypes, registerSubtypes, registerSubtypes, setAbstractTypes, setDeserializerModifier, setDeserializers, setKeyDeserializers, setKeySerializers, setMixInAnnotation, setNamingStrategy, setSerializerModifier, setSerializers, setupModule, setValueInstantiators, version

    Methods inherited from class com.fasterxml.jackson.databind.Module

    getDependencies

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • CensorshipModule

      public CensorshipModule()
      The default constructor adds a censorship serializer that has no mask defined. However, the actual decision about whether or not to censor an attribute string is based on a mask that is specified with an @Sensitive(mask="some mask") annotation on the attribute.