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

javax.validation.ConfigurationSource Maven / Gradle / Ivy

There is a newer version: 2.0.1.Final
Show newest version
/*
* Copyright 2012, 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;

import java.util.Map;
import java.util.Set;

/**
 * Represents a configuration source. In particular
 * META-INF/validation.xml
 *
 * @author Emmanuel Bernard 
 * @author Gunnar Morling
 */
public interface ConfigurationSource {
	/**
	 * Class name of the {@code ValidationProvider} implementation
	 * or null if none is specified.
	 *
	 * @return validation provider class name
	 */
	public String getDefaultProviderClassName();

	/**
	 * Class name of the {@code ConstraintValidatorFactory} implementation
	 * or null if none is specified.
	 *
	 * @return constraint validator factory class name
	 */
	public String getConstraintValidatorFactoryClassName();

	/**
	 * Class name of the {@code MessageInterpolator} implementation
	 * or null if none is specified.
	 *
	 * @return message interpolator class name or null
	 */
	public String getMessageInterpolatorClassName();

	/**
	 * Class name of the {@code TraversableResolver} implementation
	 * or null if none is specified.
	 *
	 * @return traversable resolver class name or null
	 */
	public String getTraversableResolverClassName();

    /**
     * Class name of the {@code ParameterNameProvider} implementation
     * or null if none is specified.
     *
     * @return parameter name provider class name or null
     */
    public String getParameterNameProviderClassName();

	/**
	 * Returns a set of resource path pointing to XML constraint mapping files.
	 * The Set is empty if none are specified.
	 *
	 * @return set of constraint mapping resource path
	 */
	public Set getConstraintMappingResourcePath();

	/**
	 * Returns properties as a Map of property name as key and property value as value.
	 * The Map is empty if no property has been specified.
	 *
	 * @return properties
	 */
	public Map getProperties();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy