Package org.hibernate.validation.xml

Examples of org.hibernate.validation.xml.ValidationBootstrapParameters


      this.providerResolver = state.getDefaultValidationProviderResolver();
    }
    else {
      this.providerResolver = state.getValidationProviderResolver();
    }
    validationBootstrapParameters = new ValidationBootstrapParameters();
  }
View Full Code Here


  public ConfigurationImpl(ValidationProvider provider) {
    if ( provider == null ) {
      throw new ValidationException( "Assertion error: inconsistent ConfigurationImpl construction" );
    }
    this.providerResolver = null;
    validationBootstrapParameters = new ValidationBootstrapParameters();
    validationBootstrapParameters.provider = provider;
  }
View Full Code Here

        factory = providers.get( 0 ).buildValidatorFactory( this );
      }
    }

    // reset the param holder
    validationBootstrapParameters = new ValidationBootstrapParameters();
    return factory;
  }
View Full Code Here

    if ( ignoreXmlConfiguration ) {
      log.info( "Ignoring XML configuration." );
      return;
    }

    ValidationBootstrapParameters xmlParameters = new ValidationXmlParser().parseValidationXml();
    applyXmlSettings( xmlParameters );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.validation.xml.ValidationBootstrapParameters

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.