Package org.lowcoder.plugin.api
Annotation Interface EndpointExtension
Annotation used for marking Lowcoder endpoints.
Provides basic information required for registering an endpoint in Lowcoder.
Provides basic information required for registering an endpoint in Lowcoder.
- Author:
- ludomikula
-
Required Element Summary
Required Elements -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionboolean
-
Element Details
-
uri
String uri- Returns:
- URI to which to bind annotated method to
-
-
-
method
PluginEndpoint.Method method- Returns:
- HTTP method for this annotated endpoint
- Default:
- GET
-
authenticated
boolean authenticated- Returns:
- True if this endpoint should be secured
- Default:
- false
-
expression
String expression- Returns:
- Security SPeL expression (in case authenticated is set to true)
- Default:
- ""
-