silentbalanceyh/vertx-zero

View on GitHub
vertx-gaia/vertx-co/src/main/environment/io/vertx/up/annotations/Ordered.java

Summary

Maintainability
A
0 mins
Test Coverage
package io.vertx.up.annotations;

import java.lang.annotation.*;

/**
 * Annotated on @WebFilter for manage sequence of class.
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface Ordered {
    /**
     * The order will be the sequence of filters
     *
     * @return The sequence of filters.
     */
    int value() default 0;
}