/* * Hibernate Validator, declare and validate application constraints * * License: Apache License, Version 2.0 * See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>. */ package org.hibernate.validator.internal.metadata.descriptor; import java.util.List; import java.util.Set; import javax.validation.metadata.CrossParameterDescriptor; /** * Describes cross-parameters. * * @author Gunnar Morling */ public class CrossParameterDescriptorImpl extends ElementDescriptorImpl implements CrossParameterDescriptor { public CrossParameterDescriptorImpl(Set<ConstraintDescriptorImpl<?>> constraintDescriptors, boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) { super( Object[].class, constraintDescriptors, defaultGroupSequenceRedefined, defaultGroupSequence ); } }