You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@juneau.apache.org by "James Bognar (Jira)" <ji...@apache.org> on 2020/05/12 23:46:00 UTC

[jira] [Created] (JUNEAU-228) Make it easier to create bean filters programmatically.

James Bognar created JUNEAU-228:
-----------------------------------

             Summary: Make it easier to create bean filters programmatically.
                 Key: JUNEAU-228
                 URL: https://issues.apache.org/jira/browse/JUNEAU-228
             Project: Juneau
          Issue Type: Improvement
          Components: Code
    Affects Versions: 8.1.3
            Reporter: James Bognar
            Assignee: James Bognar


 

It should be possible to add bean filters to serializers and parsers using builders like so:
{code:java}
WriterSerializer s = JsonSerializer
   .create()
   .beanFilters(BeanFilter.create(MyBean.class).bpi("foo,bar,baz"))
   .build();
{code}
 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)