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

org.hibernate.validator.internal.metadata.provider.MetaDataProvider Maven / Gradle / Ivy

Go to download

JSR 380's RI, Hibernate Validator version ${hibernate-validator.version} and its dependencies repackaged as OSGi bundle

There is a newer version: 5.1.0
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.internal.metadata.provider;

import org.hibernate.validator.internal.metadata.core.AnnotationProcessingOptions;
import org.hibernate.validator.internal.metadata.raw.BeanConfiguration;

/**
 * A provider for constraint related meta data such as constraints, default
 * group sequences etc.
 * 

* Implementations are based one different meta data sources such as XML, * programmatic mappings and annotations. Meta data providers only return meta * data directly configured for one class, they don't deal with merging meta * data from super-classes or implemented interfaces. *

* * @author Gunnar Morling * @author Hardy Ferentschik */ public interface MetaDataProvider { /** * Returns the annotation processing options as configured by this provider. * * @return The annotation processing options as configured by this provider. */ AnnotationProcessingOptions getAnnotationProcessingOptions(); /** * Returns a bean configuration for the given type or {@code null} if this provider has no meta-data on the given * type. */ BeanConfiguration getBeanConfiguration(Class beanClass); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy