Uses of Class
org.hibernate.validator.internal.metadata.raw.ConfigurationSource

Packages that use ConfigurationSource
org.hibernate.validator.internal.metadata.provider Abstraction of the meta data sources - annotation, xml, programmatic 
org.hibernate.validator.internal.metadata.raw The raw metadata is a reflection of all configured constraints including constraints defined via multiple configuration sources. 
 

Uses of ConfigurationSource in org.hibernate.validator.internal.metadata.provider
 

Methods in org.hibernate.validator.internal.metadata.provider with parameters of type ConfigurationSource
protected
<T> BeanConfiguration<T>
MetaDataProviderKeyedByClassName.createBeanConfiguration(ConfigurationSource source, Class<T> beanClass, Set<? extends ConstrainedElement> constrainableElements, List<Class<?>> defaultGroupSequence, DefaultGroupSequenceProvider<? super T> defaultGroupSequenceProvider)
           
 

Uses of ConfigurationSource in org.hibernate.validator.internal.metadata.raw
 

Methods in org.hibernate.validator.internal.metadata.raw that return ConfigurationSource
 ConfigurationSource BeanConfiguration.getSource()
           
 ConfigurationSource AbstractConstrainedElement.getSource()
           
static ConfigurationSource ConfigurationSource.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ConfigurationSource[] ConfigurationSource.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in org.hibernate.validator.internal.metadata.raw with parameters of type ConfigurationSource
AbstractConstrainedElement(ConfigurationSource source, ConstrainedElement.ConstrainedElementKind kind, ConstraintLocation location, Set<MetaConstraint<?>> constraints, boolean isCascading)
           
BeanConfiguration(ConfigurationSource source, Class<T> beanClass, Set<? extends ConstrainedElement> constrainedElements, List<Class<?>> defaultGroupSequence, DefaultGroupSequenceProvider<? super T> defaultGroupSequenceProvider)
          Creates a new bean configuration.
ConstrainedField(ConfigurationSource source, BeanConstraintLocation location, Set<MetaConstraint<?>> constraints, boolean isCascading)
          Creates a new field meta data object.
ConstrainedMethod(ConfigurationSource source, MethodConstraintLocation location, List<ConstrainedParameter> parameterMetaData, Set<MetaConstraint<?>> returnValueConstraints, boolean isCascading)
          Creates a new method meta data object.
ConstrainedMethod(ConfigurationSource source, MethodConstraintLocation location, Set<MetaConstraint<?>> returnValueConstraints, boolean isCascading)
          Creates a new method meta data object for a parameter-less method.
ConstrainedParameter(ConfigurationSource source, MethodConstraintLocation location, String name, Set<MetaConstraint<?>> constraints, boolean isCascading)
          Creates a new parameter meta data object.
ConstrainedType(ConfigurationSource source, BeanConstraintLocation location, Set<MetaConstraint<?>> constraints)
          Creates a new type meta data object.
 



Copyright © 2012 Oracle Corporation. All Rights Reserved.