本文整理汇总了Java中org.hibernate.validator.spi.group.DefaultGroupSequenceProvider类的典型用法代码示例。如果您正苦于以下问题:Java DefaultGroupSequenceProvider类的具体用法?Java DefaultGroupSequenceProvider怎么用?Java DefaultGroupSequenceProvider使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DefaultGroupSequenceProvider类属于org.hibernate.validator.spi.group包,在下文中一共展示了DefaultGroupSequenceProvider类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setDefaultGroupSequenceOrProvider
import org.hibernate.validator.spi.group.DefaultGroupSequenceProvider; //导入依赖的package包/类
private void setDefaultGroupSequenceOrProvider(List<Class<?>> defaultGroupSequence,
DefaultGroupSequenceProvider<? super T> defaultGroupSequenceProvider) {
if (defaultGroupSequence != null && defaultGroupSequenceProvider != null) {
throw log.getInvalidDefaultGroupSequenceDefinitionException();
}
if (defaultGroupSequenceProvider != null) {
this.defaultGroupSequenceProvider = defaultGroupSequenceProvider;
} else if (defaultGroupSequence != null && !defaultGroupSequence.isEmpty()) {
setDefaultGroupSequence(defaultGroupSequence);
} else {
setDefaultGroupSequence(Arrays.<Class<?>> asList(beanClass));
}
}
示例2: BeanMetaDataImpl513
import org.hibernate.validator.spi.group.DefaultGroupSequenceProvider; //导入依赖的package包/类
/**
* Creates a new {@link BeanMetaDataImpl}
*
* @param beanClass
* The Java type represented by this meta data object.
* @param defaultGroupSequence
* The default group sequence.
* @param defaultGroupSequenceProvider
* The default group sequence provider if set.
* @param constraintMetaDataSet
* All constraint meta data relating to the represented type.
*/
public BeanMetaDataImpl513(Class<T> beanClass, List<Class<?>> defaultGroupSequence,
DefaultGroupSequenceProvider<? super T> defaultGroupSequenceProvider,
Set<ConstraintMetaData> constraintMetaDataSet) {
this.beanClass = beanClass;
this.propertyMetaDataMap = newHashMap();
Set<PropertyMetaData> propertyMetaDataSet = newHashSet();
Set<ExecutableMetaData> executableMetaDataSet = newHashSet();
for (ConstraintMetaData constraintMetaData : constraintMetaDataSet) {
if (constraintMetaData.getKind() == ElementKind.PROPERTY) {
propertyMetaDataSet.add((PropertyMetaData) constraintMetaData);
} else {
executableMetaDataSet.add((ExecutableMetaData) constraintMetaData);
}
}
Set<Cascadable> cascadedProperties = newHashSet();
Set<MetaConstraint<?>> allMetaConstraints = newHashSet();
for (PropertyMetaData propertyMetaData : propertyMetaDataSet) {
propertyMetaDataMap.put(propertyMetaData.getName(), propertyMetaData);
if (propertyMetaData.isCascading()) {
cascadedProperties.add(propertyMetaData);
}
allMetaConstraints.addAll(propertyMetaData.getConstraints());
}
this.cascadedProperties = Collections.unmodifiableSet(cascadedProperties);
this.allMetaConstraints = Collections.unmodifiableSet(allMetaConstraints);
// this.classHierarchyWithoutInterfaces =
// ClassHierarchyHelper.getHierarchy(
// beanClass,
// Filters.excludeInterfaces()
// );
this.classHierarchyWithoutInterfaces = new ArrayList<Class<? super T>>(1);
this.classHierarchyWithoutInterfaces.add(beanClass);
setDefaultGroupSequenceOrProvider(defaultGroupSequence, defaultGroupSequenceProvider);
this.directMetaConstraints = getDirectConstraints();
this.executableMetaDataMap = Collections.unmodifiableMap(byIdentifier(executableMetaDataSet));
this.beanDescriptor = new BeanDescriptorImpl(beanClass, getClassLevelConstraintsAsDescriptors(),
getConstrainedPropertiesAsDescriptors(), getConstrainedMethodsAsDescriptors(),
getConstrainedConstructorsAsDescriptors(), defaultGroupSequenceIsRedefined(),
getDefaultGroupSequence(null));
}