Package io.helidon.webserver
Interface Service
-
- All Known Implementing Classes:
AccessLogSupport
,FormParamsSupport
,HealthSupport
,JacksonSupport
,JerseySupport
,JsonBindingSupport
,JsonService
,JsonSupport
,MetricsSupport
,OidcSupport
,OpenAPISupport
,PrometheusSupport
,StaticContentSupport
,WebSecurity
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Service
Encapsulates a set ofrouting
rules and related logic.Instance can be assigned to the
routing
usingregister(...)
methods.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
update(Routing.Rules rules)
UpdatesRouting.Rules
withhandlers
representing this service.
-
-
-
Method Detail
-
update
void update(Routing.Rules rules)
UpdatesRouting.Rules
withhandlers
representing this service.- Parameters:
rules
- a routing rules to update
-
-