Change By: Hardy Ferentschik (30/Aug/12 7:54 AM)
Description: The Cascaded validation via _  @ Valid annotation Valid_  should  implement  allow to transform validated groups when traversing from one object to  the  group attribute in order  other. Something like:

{code}
public class User {
    @Valid
    @ConvertGroup.List( {
        @ConvertGroup(from=Default.class,
 to  make validation completely annotation driven =BasicPostal .  Currently class) ,  we need
        @ConvertGroup(from=Complete.class,
 to  manually call the validate method on the validator if we want =FullPostal.class)
    } )
    Set<Address> getAddresses() { ... }
}
{code}

{code}
public class User {
    @Valid
    @ConvertGroup( 
        from={Default.class, Complete.class},
 to  validate based on groups ={BasicPostal . class, FullPostal.class}
    )
    Set<Address> getAddresses() { ... }
}
{code}
Summary: support Support  groups translation  when cascading operations (hosted on @Valid or not)  during cascaded validations 
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira