noel created SLING-10256: ---------------------------- Summary: Default value support for ValueMapValue Key: SLING-10256 URL: https://issues.apache.org/jira/browse/SLING-10256 Project: Sling Issue Type: Improvement Components: Sling Models Reporter: noel
Currently, It is possible to set a default value for a ValueMapValue injection by combining it with the {code} @Default (values = "standardbuttonwhite") {code:java} annotation. Since most features moved away from an "additional annotation" approach towards a "parameter" aproach, I would like to suggest to do the same for ValueMapValue defaults So instead of {code:java} @ValueMapValue @Default (values = "standardbuttonwhite") private String fieldName; {code} it would be nice if {code:java} @ValueMapValue(defaults = "standardbuttonwhite") private String fieldName; {code} would be possible -- This message was sent by Atlassian Jira (v8.3.4#803005)