Class LdapJackson2Module
- java.lang.Object
-
- com.fasterxml.jackson.databind.Module
-
- com.fasterxml.jackson.databind.module.SimpleModule
-
- org.springframework.security.ldap.jackson2.LdapJackson2Module
-
- All Implemented Interfaces:
com.fasterxml.jackson.core.Versioned
,java.io.Serializable
public class LdapJackson2Module extends com.fasterxml.jackson.databind.module.SimpleModule
Jackson module forspring-security-ldap
. This module registersLdapAuthorityMixin
,LdapUserDetailsImplMixin
,PersonMixin
,InetOrgPersonMixin
. If not already enabled, default typing will be automatically enabled as type info is required to properly serialize/deserialize objects. In order to use this module just add it to yourObjectMapper
configuration.ObjectMapper mapper = new ObjectMapper(); mapper.registerModule(new LdapJackson2Module());
Note: useSecurityJackson2Modules.getModules(ClassLoader)
to get list of all security modules.- Since:
- 5.7
- See Also:
SecurityJackson2Modules
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LdapJackson2Module()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setupModule(com.fasterxml.jackson.databind.Module.SetupContext context)
-
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, setValueInstantiators, version
-
-