Package io.helidon.security.integration.webserver
Integration library for RxServer.
 
 Example of integration (expects an instance of Security):
 
// Web server routing builder - this is our integration pointRoutingrouting = Routing.builder() // register the WebSecurity to create context (shared by all routes) .register(WebSecurity.from(security)) // authenticate all paths under /user and require role "user" .get("/user[/{*}]", WebSecurity.authenticate().rolesAllowed("user")) // authenticate "/admin" path and require role "admin" .get("/admin", WebSecurity.rolesAllowed("admin") .authenticate() ) // build a routing instance to startWebServerwith. .build();
 The main security methods are duplicate - first as static methods on WebSecurity and
 then as instance methods on SecurityHandler that is returned by the static methods
 above. This is to provide a single starting point for security integration (WebSecurity)
 and fluent API to build the "gate" to each route that is protected.
- 
Class Summary Class Description SecurityHandler Handles security for web server.SecurityHandler.QueryParamHandler Handler of query parameters - extracts them and stores them in a security header, so security can access them.WebSecurity Integration of security into Web Server.