Examples of handleValidatedValue()


Examples of org.hibernate.validator.spi.valuehandling.ValidatedValueUnwrapper.handleValidatedValue()

    UnwrapMode unwrapMode = cascadable.unwrapMode();
    if ( UnwrapMode.UNWRAP.equals( unwrapMode )
        || UnwrapMode.AUTOMATIC.equals( unwrapMode ) ) {
      ValidatedValueUnwrapper valueHandler = validationContext.getValidatedValueUnwrapper( cascadable.getType() );
      if ( valueHandler != null ) {
        value = valueHandler.handleValidatedValue( value );
      }
    }

    return value;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.