Package org.hibernate.validator.internal.metadata.provider

Examples of org.hibernate.validator.internal.metadata.provider.ProgrammaticMappingMetaDataProvider


    if ( configurationState instanceof ConfigurationImpl ) {
      ConfigurationImpl hibernateSpecificConfig = (ConfigurationImpl) configurationState;

      if ( hibernateSpecificConfig.getProgrammaticMappings().size() > 0 ) {
        metaDataProviders.add(
            new ProgrammaticMappingMetaDataProvider(
                constraintHelper,
                hibernateSpecificConfig.getProgrammaticMappings()
            )
        );
      }
View Full Code Here

TOP

Related Classes of org.hibernate.validator.internal.metadata.provider.ProgrammaticMappingMetaDataProvider

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.