Class SimpleBeanPropertyFilter.FilterExceptFilter

    • Field Detail

      • _propertiesToInclude

        protected final Set<String> _propertiesToInclude
        Set of property names to serialize.
    • Constructor Detail

      • FilterExceptFilter

        public FilterExceptFilter​(Set<String> properties)
    • Method Detail

      • serializeAsField

        public void serializeAsField​(Object bean,
                                     JsonGenerator jgen,
                                     SerializerProvider provider,
                                     BeanPropertyWriter writer)
                              throws Exception
        Description copied from interface: BeanPropertyFilter
        Method called by BeanSerializer to let filter decide what to do with given bean property value: the usual choices are to either filter out (i.e. do nothing) or write using given BeanPropertyWriter, although filters can choose other to do something different altogether.
        Parameters:
        bean - Bean of which property value to serialize
        jgen - Generator use for serializing value
        provider - Provider that can be used for accessing dynamic aspects of serialization processing
        writer - Default bean property serializer to use
        Throws:
        Exception