@Target(value=TYPE)
@Retention(value=RUNTIME)
@Documented
public @interface FilteredEndpoint
@Endpoint to implement implicit
filtering. Often used as a meta-annotation on technology specific endpoint annotations,
for example:
@Endpoint
@FilteredEndpoint(WebEndpointFilter.class)
public @interface WebEndpoint {
@AliasFor(annotation = Endpoint.class, attribute = "id")
String id();
@AliasFor(annotation = Endpoint.class, attribute = "enableByDefault")
boolean enableByDefault() default true;
} DiscovererEndpointFilter| Modifier and Type | Required Element and Description |
|---|---|
java.lang.Class<? extends EndpointFilter<?>> |
value
The filter class to use.
|
public abstract java.lang.Class<? extends EndpointFilter<?>> value