Uses of Interface
org.codehaus.jackson.map.ser.BeanPropertyFilter
Packages that use BeanPropertyFilter
Package
Description
Contains implementation classes of serialization part of
data binding.
Contains implementation classes of serialization part of
data binding.
-
Uses of BeanPropertyFilter in org.codehaus.jackson.map.ser
Methods in org.codehaus.jackson.map.ser that return BeanPropertyFilterModifier and TypeMethodDescriptionabstract BeanPropertyFilter
FilterProvider.findFilter
(Object filterId) Lookup method used to findBeanPropertyFilter
that has specified id. -
Uses of BeanPropertyFilter in org.codehaus.jackson.map.ser.impl
Classes in org.codehaus.jackson.map.ser.impl that implement BeanPropertyFilterModifier and TypeClassDescriptionclass
SimpleBeanPropertyFilter
implementation that only uses property name to determine whether to serialize property as is, or to filter it out.static class
Filter implementation which defaults to filtering out unknown properties and only serializes ones explicitly listed.static class
Filter implementation which defaults to serializing all properties, except for ones explicitly listed to be filtered out.Fields in org.codehaus.jackson.map.ser.impl declared as BeanPropertyFilterModifier and TypeFieldDescriptionprotected BeanPropertyFilter
SimpleFilterProvider._defaultFilter
This is the filter we return in case no mapping was found for given id; default is 'null' (in which case caller typically reports an error), but can be set to an explicit filter.Fields in org.codehaus.jackson.map.ser.impl with type parameters of type BeanPropertyFilterModifier and TypeFieldDescriptionprotected final Map<String,
BeanPropertyFilter> SimpleFilterProvider._filtersById
Mappings from ids to filters.Methods in org.codehaus.jackson.map.ser.impl that return BeanPropertyFilterModifier and TypeMethodDescriptionSimpleFilterProvider.findFilter
(Object filterId) SimpleFilterProvider.getDefaultFilter()
SimpleFilterProvider.removeFilter
(String id) Methods in org.codehaus.jackson.map.ser.impl with parameters of type BeanPropertyFilterModifier and TypeMethodDescriptionSimpleFilterProvider.addFilter
(String id, BeanPropertyFilter filter) SimpleFilterProvider.setDefaultFilter
(BeanPropertyFilter f) Method for defining filter to return for "unknown" filters; cases where there is no mapping from given id to an explicit filter.Constructor parameters in org.codehaus.jackson.map.ser.impl with type arguments of type BeanPropertyFilter -
Uses of BeanPropertyFilter in org.codehaus.jackson.map.ser.std
Methods in org.codehaus.jackson.map.ser.std that return BeanPropertyFilterModifier and TypeMethodDescriptionprotected BeanPropertyFilter
BeanSerializerBase.findFilter
(SerializerProvider provider) Helper method used to locate filter that is needed, based on filter id this serializer was constructed with.