silentbalanceyh/vertx-zero

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

Summary

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

import java.lang.annotation.*;

/**
 * Marked as route, every vertx route must contains
 * <p>
 * io.vertx.up.annotations.Routine annotation to avoid scan method directly
 * 1. Each route must be marked as EndPoint;
 * 2. Each routine class should be pojo as JSR311;
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface EndPoint {
}