@Retention(value=RUNTIME) @Target(value={METHOD,FIELD}) public @interface Nested
Marks a property as specifying a nested bean, whose properties should be checked for annotations.
This annotation should be attached to the getter method in Java or the property in Groovy. Annotations on setters or just the field in Java are ignored.
The implementation of the nested bean is tracked as an input, too.
This allows tracking behavior such as Action
s as task inputs.
This annotation supports iterable values by treating each element as a separate nested input.