| Subpackages | |
| io.vertx.ceylon.web.handler.sockjs | |
| Values | |
basicAuthHandler | shared basicAuthHandler basicAuthHandler |
bodyHandler | shared bodyHandler bodyHandler |
cookieHandler | shared cookieHandler cookieHandler |
corsHandler | shared corsHandler corsHandler |
csrfHandler | shared csrfHandler csrfHandler |
default | shared default defaultremote-client - - [timestamp] “method uri version” status content-length “referrer” “user-agent” |
errorHandler | shared errorHandler errorHandler |
faviconHandler | shared faviconHandler faviconHandler |
formLoginHandler | shared formLoginHandler formLoginHandler |
jwtAuthHandler | shared jwtAuthHandler jwtAuthHandler |
loggerFormat | shared loggerFormat loggerFormat |
loggerHandler | shared loggerHandler loggerHandler |
oAuth2AuthHandler | shared oAuth2AuthHandler oAuth2AuthHandler |
redirectAuthHandler | shared redirectAuthHandler redirectAuthHandler |
responseTimeHandler | shared responseTimeHandler responseTimeHandler |
sessionHandler | shared sessionHandler sessionHandler |
short | shared short shortremote-client - method uri version status content-length duration ms |
staticHandler | shared staticHandler staticHandler |
templateHandler | shared templateHandler templateHandler |
timeoutHandler | shared timeoutHandler timeoutHandler |
tiny | shared tiny tinymethod uri status - content-length duration |
userSessionHandler | shared userSessionHandler userSessionHandler |
virtualHostHandler | shared virtualHostHandler virtualHostHandler |
| Interfaces | |
AuthHandler | shared AuthHandlerBase interface for auth handlers. An auth handler allows your application to provide authentication/authorisation support. Auth handler requires a SessionHandler to be on the routing chain before it. |
| Classes | |
BasicAuthHandler | shared BasicAuthHandlerAn auth handler that provides HTTP Basic Authentication support. |
BodyHandler | shared BodyHandlerA handler which gathers the entire request body and sets it on the . It also handles HTTP file uploads and can be used to limit body sizes. |
CSRFHandler | shared CSRFHandlerThis handler adds a CSRF token to requests which mutate state. In order change the state a (XSRF-TOKEN) cookie is set with a unique token, that is expected to be sent back in a (X-XSRF-TOKEN) header. The behavior is to check the request body header and cookie for validity. This Handler requires session support, thus should be added somewhere below Session and Body handlers. |
CookieHandler | shared CookieHandlerA handler which decodes cookies from the request, makes them available in the and writes them back in the response. |
CorsHandler | shared CorsHandlerA handler which implements server side http://www.w3.org/TR/cors/[CORS] support for Vert.x-Web. |
ErrorHandler | shared ErrorHandlerA pretty error handler for rendering error pages. |
FaviconHandler | shared FaviconHandlerA handler that serves favicons.
If no file system path is specified it will attempt to serve a resource called |
FormLoginHandler | shared FormLoginHandlerHandler that handles login from a form on a custom login page. Used in conjunction with the RedirectAuthHandler. |
JWTAuthHandler | shared JWTAuthHandlerAn auth handler that provides JWT Authentication support. |
LoggerFormat | shared abstract LoggerFormatThe possible out of the box formats. |
LoggerHandler | shared LoggerHandlerA handler which logs request information to the Vert.x logger. |
OAuth2AuthHandler | shared OAuth2AuthHandlerAn auth handler that provides OAuth2 Authentication support. This handler is suitable for AuthCode flows. |
RedirectAuthHandler | shared RedirectAuthHandlerAn auth handler that's used to handle auth by redirecting user to a custom login page. |
ResponseTimeHandler | shared ResponseTimeHandlerHandler which adds a header |
SessionHandler | shared SessionHandlerA handler that maintains a Session for each browser session. It looks up the session for each request based on a session cookie which contains a session ID. It stores the session when the response is ended in the session store. The session is available on the routing context with . The session handler requires a CookieHandler to be on the routing chain before it. |
StaticHandler | shared StaticHandlerA handler for serving static resources from the file system or classpath. |
TemplateHandler | shared TemplateHandlerA handler which renders responses using a template engine and where the template name is selected from the URI path. |
TimeoutHandler | shared TimeoutHandlerHandler that will timeout requests if the response has not been written after a certain time.
Timeout requests will be ended with an HTTP status code |
UserSessionHandler | shared UserSessionHandlerThis handler should be used if you want to store the User object in the Session so it's available between different requests, without you having re-authenticate each time. It requires that the session handler is already present on previous matching routes. It requires an Auth provider so, if the user is deserialized from a clustered session it knows which Auth provider to associate the session with. |
VirtualHostHandler | shared VirtualHostHandlerHandler that will filter requests based on the request Host name. |
basicAuthHandler | shared basicAuthHandler |
bodyHandler | shared bodyHandler |
cookieHandler | shared cookieHandler |
corsHandler | shared corsHandler |
csrfHandler | shared csrfHandler |
default | shared defaultremote-client - - [timestamp] “method uri version” status content-length “referrer” “user-agent” |
errorHandler | shared errorHandler |
faviconHandler | shared faviconHandler |
formLoginHandler | shared formLoginHandler |
jwtAuthHandler | shared jwtAuthHandler |
loggerFormat | shared loggerFormat |
loggerHandler | shared loggerHandler |
oAuth2AuthHandler | shared oAuth2AuthHandler |
redirectAuthHandler | shared redirectAuthHandler |
responseTimeHandler | shared responseTimeHandler |
sessionHandler | shared sessionHandler |
short | shared shortremote-client - method uri version status content-length duration ms |
staticHandler | shared staticHandler |
templateHandler | shared templateHandler |
timeoutHandler | shared timeoutHandler |
tiny | shared tinymethod uri status - content-length duration |
userSessionHandler | shared userSessionHandler |
virtualHostHandler | shared virtualHostHandler |