Detect Setters with Lower Visibility than public
mpluecker opened this issue · 2 comments
mpluecker commented
We want to implement POJOs with setters that are only used in the mapping process. Thus, the setters have a visibility of protected or default. We need an annotation to definie the minimum visibility for getters and setters for the process of detecting mapped fields.
kerko commented
When we do this, we should do it right. Since jackson for example also supports private setters, we should enable that to. That way its possible to defined setters only used for serialization and nothing else ever.