All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.validator.HibernateValidatorConfiguration Maven / Gradle / Ivy

There is a newer version: 0.40.13
Show newest version
/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or .
 */
package org.hibernate.validator;

import javax.validation.Configuration;

import org.hibernate.validator.cfg.ConstraintMapping;
import org.hibernate.validator.spi.constraintdefinition.ConstraintDefinitionContributor;
import org.hibernate.validator.spi.resourceloading.ResourceBundleLocator;
import org.hibernate.validator.spi.time.TimeProvider;
import org.hibernate.validator.spi.valuehandling.ValidatedValueUnwrapper;

/**
 * Uniquely identifies Hibernate Validator in the Bean Validation bootstrap
 * strategy. Also contains Hibernate Validator specific configurations.
 *
 * @author Emmanuel Bernard
 * @author Gunnar Morling
 * @author Kevin Pollet <[email protected]> (C) 2011 SERLI
 * @author Hardy Ferentschik
 */
public interface HibernateValidatorConfiguration extends Configuration {
	/**
	 * Property corresponding to the {@link #failFast} method.
	 * Accepts {@code true} or {@code false}. Defaults to {@code false}.
	 */
	String FAIL_FAST = "hibernate.validator.fail_fast";

	/**
	 * Property corresponding to the {@link #addValidatedValueHandler(ValidatedValueUnwrapper)} method. Accepts a String
	 * with the comma-separated fully-qualified names of one or more {@link ValidatedValueUnwrapper} implementations.
	 */
	String VALIDATED_VALUE_HANDLERS = "hibernate.validator.validated_value_handlers";

	/**
	 * Property corresponding to the {@link #addConstraintDefinitionContributor(org.hibernate.validator.spi.constraintdefinition.ConstraintDefinitionContributor)}
	 * method. Accepts a String with the comma-separated fully-qualified names of one or more {@link org.hibernate.validator.spi.constraintdefinition.ConstraintDefinitionContributor} implementations.
	 *
	 * @since 5.2
	 */
	String CONSTRAINT_DEFINITION_CONTRIBUTORS = "hibernate.validator.constraint_definition_contributors";

	/**
	 * Property for configuring a constraint mapping contributor, allowing to set up one or more constraint mappings for
	 * the default validator factory. Accepts a String with the fully-qualified class name of a
	 * {@link org.hibernate.validator.spi.cfg.ConstraintMappingContributor} implementation.
	 *
	 * @since 5.2
	 */
	String CONSTRAINT_MAPPING_CONTRIBUTOR = "hibernate.validator.constraint_mapping_contributor";

	/*
	 * Property corresponding to the {@link #timeProvider(TimeProvider)} method. Accepts a String with the
	 * fully-qualified class name of a {@link TimeProvider} implementation.
	 *
	 * @since 5.2
	 */
	String TIME_PROVIDER = "hibernate.validator.time_provider";


	/**
	 * 

* Returns the {@link ResourceBundleLocator} used by the * {@link Configuration#getDefaultMessageInterpolator() default message * interpolator} to load user-provided resource bundles. In conformance with * the specification this default locator retrieves the bundle * "ValidationMessages". *

*

* This locator can be used as delegate for custom locators when setting a * customized {@link org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator}: *

*
	 * {@code
	 * 	HibernateValidatorConfiguration configure =
	 *    Validation.byProvider(HibernateValidator.class).configure();
	 *
	 *  ResourceBundleLocator defaultResourceBundleLocator =
	 *    configure.getDefaultBundleLocator();
	 *  ResourceBundleLocator myResourceBundleLocator =
	 *    new MyResourceBundleLocator(defaultResourceBundleLocator);
	 *
	 *  configure.messageInterpolator(
	 *    new ResourceBundleMessageInterpolator(myResourceBundleLocator));
	 * }
	 * 
* * @return The default {@link ResourceBundleLocator}. Never null. */ ResourceBundleLocator getDefaultResourceBundleLocator(); /** * Creates a new constraint mapping which can be used to programmatically configure the constraints for given types. After * the mapping has been set up, it must be added to this configuration via {@link #addMapping(ConstraintMapping)}. * * @return A new constraint mapping. */ ConstraintMapping createConstraintMapping(); /** * Adds the specified {@link ConstraintMapping} instance to the configuration. Constraints configured in {@code mapping} * will be added to the constraints configured via annotations and/or xml. * * @param mapping {@code ConstraintMapping} instance containing programmatic configured constraints * * @return {@code this} following the chaining method pattern * * @throws IllegalArgumentException if {@code mapping} is {@code null} */ HibernateValidatorConfiguration addMapping(ConstraintMapping mapping); /** * En- or disables the fail fast mode. When fail fast is enabled the validation * will stop on the first constraint violation detected. * * @param failFast {@code true} to enable fail fast, {@code false} otherwise. * * @return {@code this} following the chaining method pattern */ HibernateValidatorConfiguration failFast(boolean failFast); /** * Registers the given validated value unwrapper with the bootstrapped validator factory. When validating an element * which is of a type supported by the unwrapper and which is annotated with * {@link org.hibernate.validator.valuehandling.UnwrapValidatedValue}, the unwrapper will be applied to retrieve the * value to validate. * * @param handler the unwrapper to register * * @return {@code this} following the chaining method pattern * * @hv.experimental This API is considered experimental and may change in future revisions */ HibernateValidatorConfiguration addValidatedValueHandler(ValidatedValueUnwrapper handler); /** * @return the default {@link org.hibernate.validator.spi.constraintdefinition.ConstraintDefinitionContributor}. Never {@code null}. * @since 5.2 */ ConstraintDefinitionContributor getDefaultConstraintDefinitionContributor(); /** * Registers the given {@code ConstraintDefinitionContributor} with the bootstrapped validator factory. * * @param contributor the {@code ConstraintDefinitionContributor} to register. Cannot be {@code null}. * * @return {@code this} following the chaining method pattern * * @hv.experimental This API is considered experimental and may change in future revisions * @since 5.2 */ HibernateValidatorConfiguration addConstraintDefinitionContributor(ConstraintDefinitionContributor contributor); /** * Sets the class loader to be used for loading user-provided resources: *
    *
  • XML descriptors ({@code META-INF/validation.xml} as well as XML constraint mappings)
  • *
  • classes specified by name in XML descriptors (e.g. custom message interpolators etc.)
  • *
  • the {@code ValidationMessages} resource bundle
  • *
* If no class loader is given, these resources will be obtained through the thread context class loader and as a * last fallback through Hibernate Validator's own class loader. * * @param externalClassLoader * The class loader for loading user-provided resources. * * @return {@code this} following the chaining method pattern * @since 5.2 */ HibernateValidatorConfiguration externalClassLoader(ClassLoader externalClassLoader); /** * Registers the given time provider with the bootstrapped validator factory. This provider will be used to obtain * the current time when validating {@code @Future} and {@code @Past} constraints. By default the current system * time and the current default time zone will be used when validating these constraints. * * @param timeProvider the time provider to register. Must not be {@code null} * * @return {@code this} following the chaining method pattern * * @hv.experimental This API is considered experimental and may change in future revisions * @since 5.2 */ HibernateValidatorConfiguration timeProvider(TimeProvider timeProvider); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy