5

Has anyone come across the need to have a constraint that is only applied when all group clauses are satisfied. In other words, for

@NotNull(groups= {Group1.class, Group2.class})
private Integer value;

The not null constraint is applied when either group is valid.

What if I want to apply a constraint when both groups are valid?

Having a custom group is not an option as there are many combinations of such groups in my application.

Ashkan Aryan
  • 3,504
  • 4
  • 30
  • 44

1 Answers1

4

You might declare a group sequence containing all your groups and validate that sequence.

Gunnar
  • 18,095
  • 1
  • 53
  • 73