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

jakarta.validation.GroupSequence Maven / Gradle / Ivy

There is a newer version: 11.0.0-M2
Show newest version
/*
 * Jakarta Bean Validation API
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or .
 */
package jakarta.validation;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import jakarta.validation.groups.Default;

/**
 * Defines group sequence.
 * 

* The interface hosting {@code @GroupSequence} is representing * the group sequence. * When hosted on a class, represents the {@link Default} group * for that class. * * @author Emmanuel Bernard * @author Hardy Ferentschik */ @Target({ TYPE }) @Retention(RUNTIME) @Documented public @interface GroupSequence { Class[] value(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy