@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 |
|---|---|
Class<? extends EndpointFilter<?>> |
value
The filter class to use.
|
public abstract Class<? extends EndpointFilter<?>> value
Copyright © 2019 Pivotal Software, Inc.. All rights reserved.