Hi,
I'm not sure whether I completely get your requirement.
It's the very purpose of a validation sequence to stop validation after the first group with a violation. If you want to validate several groups in one go, you may create one group which comprises all the required groups. To do so just create an interface which inherits the other groups:
Code:
public interface Complete extends Group1, Group2 {}
You can then return this group from your default group sequence provider. Does that answer your question? Otherwise an example of your use case might be helpful.
--Gunnar