I have multiple processes in which the bean properties must have different values. Example:
@Min( value=0, groups=ProcessA.class ) @Min( value=20, groups=Pro
The syntax for Min.List, as for any other annotation taking an array of annotations as one of its attributes, is
Min.List
@Min.List({ @Min(value = 0, groups = ProcessA.class), @Min(value = 20, groups = ProcessB.class) })