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

javax.validation.ValidatorFactory Maven / Gradle / Ivy

There is a newer version: 2.0.1.Final
Show newest version
/*
* JBoss, Home of Professional Open Source
* Copyright 2009, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package javax.validation;

/**
 * Factory returning initialized {@code Validator} instances.
 *
 * Implementations are thread-safe and instances are typically cached and reused.
 *
 * @author Emmanuel Bernard
 * @author Gunnar Morling
 * @author Hardy Ferentschik
 */
public interface ValidatorFactory {
	/**
	 * Returns an initialized {@code Validator} instance using the
	 * factory defaults for message interpolator, traversable resolver
	 * and constraint validator factory.
	 * 

* Validator instances can be pooled and shared by the implementation. *

* * @return an initialized {@code Validator} instance */ Validator getValidator(); /** * Defines a new validator context and return a {@code Validator} * compliant this new context. * * @return a {@code ValidatorContext} instance */ ValidatorContext usingContext(); /** * Returns the {@code MessageInterpolator} instance configured at * initialization time for the {@code ValidatorFactory}. * This is the instance used by {@link #getValidator()}. * * @return MessageInterpolator instance */ MessageInterpolator getMessageInterpolator(); /** * Returns the {@code TraversableResolver} instance configured * at initialization time for the {@code ValidatorFactory}. * This is the instance used by {@link #getValidator()}. * * @return TraversableResolver instance */ TraversableResolver getTraversableResolver(); /** * Returns the {@code ConstraintValidatorFactory} instance * configured at initialization time for the * {@code ValidatorFactory}. * This is the instance used by #getValidator(). * * @return ConstraintValidatorFactory instance */ ConstraintValidatorFactory getConstraintValidatorFactory(); /** * Returns the {@code ParameterNameProvider} instance configured at * initialization time for the {@code ValidatorFactory}. * This is the instance used by #getValidator(). * * @return ParameterNameProvider instance * * @since 1.1 */ ParameterNameProvider getParameterNameProvider(); /** * Returns an instance of the specified type allowing access to * provider-specific APIs. If the Bean Validation provider * implementation does not support the specified class, a * {@code ValidationException} is thrown. * * @param type the class of the object to be returned * * @return an instance of the specified class * * @throws ValidationException if the provider does not * support the call. */ public T unwrap(Class type); /** * Close the {@code ValidatorFactory} instance. * * After the {@code ValidatorFactory} instance is closed, it is not allowed to call: *
    *
  • methods of this {@code ValidatorFactory} instance
  • *
  • methods of {@code Validator} instances created by this {@code ValidatorFactory}
  • *
* * @since 1.1 */ public void close(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy