-
Notifications
You must be signed in to change notification settings - Fork 120
Open
Description
Generated classes have instance variable accessibility set to protected
@XmlRootElement(name = "ProductDescriptor")
public class ProductDescriptor implements Serializable
{
private static final long serialVersionUID = 10001L;
@XmlElement(required = true)
protected String productId;
Is it possible to make the accessibility configurable and allow generating them as private?
If extending the class, the idea is to rather override the accessor/mutator than the field itself.
This is enforceable in Checkstyle's VisibilityModifier
Metadata
Metadata
Assignees
Labels
No labels