Package org.hibernate.validator.engine.groups

Examples of org.hibernate.validator.engine.groups.GroupChain


      }

      if ( !context.isAlreadyValidated(
          value, valueContext.getCurrentGroup(), valueContext.getPropertyPath()
      ) ) {
        GroupChain groupChain = groupChainGenerator.getGroupChainFor(
            Arrays.<Class<?>>asList( valueContext.getCurrentGroup() )
        );

        ValueContext<?, T> newValueContext;
        if ( value != null ) {
View Full Code Here

TOP

Related Classes of org.hibernate.validator.engine.groups.GroupChain

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.