- parameter(String) - Method in interface io.vertx.ext.web.handler.APIKeyHandler
-
Specify the source for the api key extraction as an HTTP query parameter with the given name.
- parameter(String) - Method in interface io.vertx.ext.web.ParsedHeaderValue
-
The value of the parameter specified by this key.
- parameters() - Method in interface io.vertx.ext.web.ParsedHeaderValue
-
The parameters specified in this header value.
- parsedHeaders() - Method in interface io.vertx.ext.web.RoutingContext
-
The headers:
Accept
Accept-Charset
Accept-Encoding
Accept-Language
Content-Type
Parsed into
ParsedHeaderValue
- ParsedHeaderValue - Interface in io.vertx.ext.web
-
- ParsedHeaderValues - Interface in io.vertx.ext.web
-
A container with the request's headers that are meaningful enough to be parsed
Contains:
Accept -> MIME header, parameters and sortable
Accept-Charset -> Parameters and sortable
Accept-Encoding -> Parameters and sortable
Accept-Language -> Parameters and sortable
Content-Type -> MIME header and parameters
- patch() - Method in interface io.vertx.ext.web.Router
-
Add a route that matches any HTTP PATCH request
- patch(String) - Method in interface io.vertx.ext.web.Router
-
Add a route that matches a HTTP PATCH request and the specified path
- patchWithRegex(String) - Method in interface io.vertx.ext.web.Router
-
Add a route that matches a HTTP PATCH request and the specified path regex
- path(String) - Method in interface io.vertx.ext.web.Route
-
Set the path prefix for this route.
- pathParam(String) - Method in interface io.vertx.ext.web.RoutingContext
-
Gets the value of a single path parameter
- pathParams() - Method in interface io.vertx.ext.web.RoutingContext
-
Returns a map of named parameters as defined in path declaration with their actual values
- pathRegex(String) - Method in interface io.vertx.ext.web.Route
-
Set the path prefix as a regular expression.
- pause() - Method in interface io.vertx.ext.web.handler.sockjs.SockJSSocket
-
- pkceVerifierLength(int) - Method in interface io.vertx.ext.web.handler.OAuth2AuthHandler
-
PKCE (RFC 7636) is an extension to the Authorization Code flow to prevent several attacks and to be able to
securely perform the OAuth exchange from public clients.
- PlatformHandler - Interface in io.vertx.ext.web.handler
-
Base platform interface for handlers that provide functionality to the application platform.
- post() - Method in interface io.vertx.ext.web.Router
-
Add a route that matches any HTTP POST request
- post(String) - Method in interface io.vertx.ext.web.Router
-
Add a route that matches a HTTP POST request and the specified path
- postWithRegex(String) - Method in interface io.vertx.ext.web.Router
-
Add a route that matches a HTTP POST request and the specified path regex
- preferredLanguage() - Method in interface io.vertx.ext.web.RoutingContext
-
Helper to return the user preferred language.
- produces(String) - Method in interface io.vertx.ext.web.Route
-
Add a content type produced by this route.
- prompt(String) - Method in interface io.vertx.ext.web.handler.OAuth2AuthHandler
-
Indicates the type of user interaction that is required.
- ProtocolUpgradeHandler - Interface in io.vertx.ext.web.handler
-
Base interface for handlers that perform protocol upgrades.
- put() - Method in interface io.vertx.ext.web.Router
-
Add a route that matches any HTTP PUT request
- put(String) - Method in interface io.vertx.ext.web.Router
-
Add a route that matches a HTTP PUT request and the specified path
- put(String, Object) - Method in interface io.vertx.ext.web.RoutingContext
-
Put some arbitrary data in the context.
- put(String, Object) - Method in interface io.vertx.ext.web.Session
-
Put some data in a session
- put(String, Object) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- put(Session, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.web.sstore.SessionStore
-
Add a session with the specified ID.
- put(Session) - Method in interface io.vertx.ext.web.sstore.SessionStore
-
- putIfAbsent(String, Object) - Method in interface io.vertx.ext.web.Session
-
Put some data in a session if absent
- putIfAbsent(String, Object) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- putMetadata(String, Object) - Method in interface io.vertx.ext.web.Route
-
Put metadata to this route.
- putMetadata(String, Object) - Method in interface io.vertx.ext.web.Router
-
Put metadata to this router.
- putWithRegex(String) - Method in interface io.vertx.ext.web.Router
-
Add a route that matches a HTTP PUT request and the specified path regex
- rawValue() - Method in interface io.vertx.ext.web.ParsedHeaderValue
-
Contains the raw value that was received from the user agent
- readDataFromBuffer(int, Buffer) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- readDataFromBuffer(Buffer) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- redirect(String) - Method in interface io.vertx.ext.web.RoutingContext
-
Perform a 302 redirect to url.
- redirect(String, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.web.RoutingContext
-
- RedirectAuthHandler - Interface in io.vertx.ext.web.handler
-
An auth handler that's used to handle auth by redirecting user to a custom login page.
- regenerateId() - Method in interface io.vertx.ext.web.Session
-
- regenerateId() - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- remoteAddress() - Method in interface io.vertx.ext.web.handler.sockjs.SockJSSocket
-
Return the remote address for this socket
- remove() - Method in interface io.vertx.ext.web.Route
-
Remove this route from the router
- remove(String) - Method in interface io.vertx.ext.web.RoutingContext
-
Remove some data from the context.
- remove(String) - Method in interface io.vertx.ext.web.Session
-
Remove some data from the session
- remove(String) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- removeBodyEndHandler(int) - Method in interface io.vertx.ext.web.RoutingContext
-
Remove a body end handler
- removeCookie(String) - Method in interface io.vertx.ext.web.RoutingContext
-
- removeCookie(String, boolean) - Method in interface io.vertx.ext.web.RoutingContext
-
- removeEndHandler(int) - Method in interface io.vertx.ext.web.RoutingContext
-
Remove an end handler
- removeHeadersEndHandler(int) - Method in interface io.vertx.ext.web.RoutingContext
-
Remove a headers end handler
- removeTenant(String) - Method in interface io.vertx.ext.web.handler.MultiTenantHandler
-
Remove a handler for a given tenant from this handler.
- request() - Method in interface io.vertx.ext.web.RoutingContext
-
- RequestBody - Interface in io.vertx.ext.web
-
- reroute(String) - Method in interface io.vertx.ext.web.RoutingContext
-
Restarts the current router with a new path and reusing the original method.
- reroute(HttpMethod, String) - Method in interface io.vertx.ext.web.RoutingContext
-
Restarts the current router with a new method and path.
- respond(Function<RoutingContext, Future<T>>) - Method in interface io.vertx.ext.web.Route
-
Append a function request handler to the route handlers list.
- response() - Method in interface io.vertx.ext.web.RoutingContext
-
- ResponseContentTypeHandler - Interface in io.vertx.ext.web.handler
-
A handler which sets the response content type automatically according to the best Accept header match.
- ResponseTimeHandler - Interface in io.vertx.ext.web.handler
-
Handler which adds a header `x-response-time` in the response of matching requests containing the time taken
in ms to process the request.
- restore() - Method in interface io.vertx.ext.web.UserContext
-
Undo a previous call to a impersonation.
- restore(Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.web.UserContext
-
- restore(String) - Method in interface io.vertx.ext.web.UserContext
-
Undo a previous call to an impersonation.
- restore(String, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.web.UserContext
-
- resume() - Method in interface io.vertx.ext.web.handler.sockjs.SockJSSocket
-
- retryTimeout() - Method in interface io.vertx.ext.web.sstore.SessionStore
-
The retry timeout value in milli seconds used by the session handler when it retrieves a value from the store.
- Route - Interface in io.vertx.ext.web
-
A route is a holder for a set of criteria which determine whether an HTTP request or failure should be routed
to a handler.
- route() - Method in interface io.vertx.ext.web.Router
-
Add a route with no matching criteria, i.e. it matches all requests or failures.
- route(HttpMethod, String) - Method in interface io.vertx.ext.web.Router
-
Add a route that matches the specified HTTP method and path
- route(String) - Method in interface io.vertx.ext.web.Router
-
Add a route that matches the specified path
- Router - Interface in io.vertx.ext.web
-
A router receives request from an
HttpServer and routes it to the first matching
Route that it contains.
- router(Vertx) - Static method in interface io.vertx.ext.web.Router
-
Create a router
- routeWithRegex(HttpMethod, String) - Method in interface io.vertx.ext.web.Router
-
Add a route that matches the specified HTTP method and path regex
- routeWithRegex(String) - Method in interface io.vertx.ext.web.Router
-
Add a route that matches the specified path regex
- routingContext() - Method in interface io.vertx.ext.web.handler.sockjs.SockJSSocket
-
- RoutingContext - Interface in io.vertx.ext.web
-
Represents the context for the handling of a request in Vert.x-Web.
- routingContext() - Method in interface io.vertx.ext.web.WebServerRequest
-
- SAMEORIGIN - Static variable in interface io.vertx.ext.web.handler.XFrameHandler
-
The page can only be displayed in a frame on the same origin as the page itself.
- scopeDelimiter(String) - Method in interface io.vertx.ext.web.handler.JWTAuthHandler
-
Return a new instance with the internal state copied from the caller but the scopes delimiter set
to be unique to the instance.
- SecurityPolicyHandler - Interface in io.vertx.ext.web.handler
-
Base security policy interface for handlers that provide HTTP security related headers.
- session() - Method in interface io.vertx.ext.web.RoutingContext
-
Get the session.
- Session - Interface in io.vertx.ext.web
-
Represents a browser session.
- SessionHandler - Interface in io.vertx.ext.web.handler
-
A handler that maintains a
Session for each browser
session.
- SessionStore - Interface in io.vertx.ext.web.sstore
-
A session store is used to store sessions for an Vert.x-Web web app
- setAcceptableContentType(String) - Method in interface io.vertx.ext.web.RoutingContext
-
Set the acceptable content type.
- setAccessed() - Method in interface io.vertx.ext.web.Session
-
Mark the session as being accessed.
- setAccessed() - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- setAllowRootFileSystemAccess(boolean) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Deprecated.
- setAlwaysAsyncFS(boolean) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set whether async filesystem access should always be used
- setBody(Buffer) - Method in interface io.vertx.ext.web.RoutingContext
-
- setBodyLimit(long) - Method in interface io.vertx.ext.web.handler.BodyHandler
-
Set the maximum body size in bytes, -1 means no limit.
- setCacheEntryTimeout(long) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set the server cache entry timeout when caching is enabled
- setCachingEnabled(boolean) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set whether cache header handling is enabled
- setCookieHttpOnly(boolean) - Method in interface io.vertx.ext.web.handler.CSRFHandler
-
Set the cookie httpOnly attribute.
- setCookieHttpOnlyFlag(boolean) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Sets whether the 'HttpOnly' flag should be set for the session cookie.
- setCookieless(boolean) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Use sessions based on url paths instead of cookies.
- setCookieMaxAge(long) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Set a Cookie max-age to the session cookie.
- setCookieName(String) - Method in interface io.vertx.ext.web.handler.CSRFHandler
-
Set the cookie name.
- setCookiePath(String) - Method in interface io.vertx.ext.web.handler.CSRFHandler
-
Set the cookie path.
- setCookieSameSite(CookieSameSite) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Set the session cookie SameSite policy to use.
- setCookieSecure(boolean) - Method in interface io.vertx.ext.web.handler.CSRFHandler
-
Sets the cookie secure flag.
- setCookieSecureFlag(boolean) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Sets whether the 'secure' flag should be set for the session cookie.
- setData(Map<String, Object>) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- setData(JsonObject) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- setDefaultContentEncoding(String) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set the default content encoding for text related files.
- setDeleteUploadedFilesOnEnd(boolean) - Method in interface io.vertx.ext.web.handler.BodyHandler
-
Set whether uploaded files should be removed after handling the request.
- setDirective(String, String) - Method in interface io.vertx.ext.web.handler.CSPHandler
-
Sets a single directive entry to the handler.
- setDirectLoggedInOKURL(String) - Method in interface io.vertx.ext.web.handler.FormLoginHandler
-
Set the url to redirect to if the user logs in directly at the url of the form login handler
without being redirected here first
- setDirectoryListing(boolean) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set whether directory listing is enabled
- setDirectoryTemplate(String) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set the directory template to be used when directory listing
- setEnableFSTuning(boolean) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set whether async/sync filesystem tuning should enabled
- setEnableRangeSupport(boolean) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set whether range requests (resumable downloads; media streaming) should be
enabled.
- setExtensionTarget(String) - Method in class io.vertx.ext.web.Http2PushMapping
-
- setFilePath(String) - Method in class io.vertx.ext.web.Http2PushMapping
-
- setFilesReadOnly(boolean) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set whether files are read-only and will never change
- setHandleFileUploads(boolean) - Method in interface io.vertx.ext.web.handler.BodyHandler
-
Set whether file uploads will be handled.
- setHeaderName(String) - Method in interface io.vertx.ext.web.handler.CSRFHandler
-
Set the header name.
- setHeartbeatInterval(long) - Method in class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
In order to keep proxies and load balancers from closing long running HTTP requests we need to pretend that the connection is active and send a heartbeat packet once in a while.
- setHttp2PushMapping(List<Http2PushMapping>) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set the file mapping for http2push and link preload
- setId(String) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- setInboundPermitteds(List<PermittedOptions>) - Method in class io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions
-
- setIncludeHidden(boolean) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set whether hidden files should be served
- setIndexPage(String) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set the index page
- setIndexTemplate(String) - Method in interface io.vertx.ext.web.handler.TemplateHandler
-
Set the index template
- setInsertJSESSIONID(boolean) - Method in class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
Whether to insert a JSESSIONID cookie so load-balancers ensure requests for a specific SockJS session are always routed to the correct server.
- setLastAccessed(long) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- setLazySession(boolean) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Use a lazy session creation mechanism.
- setLibraryURL(String) - Method in class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
Transports which don't support cross-domain communication natively use an iframe trick.
- setLocalWriteHandler(boolean) - Method in class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
Whether the writeHandler should be local only or cluster-wide.
- setMaxAddressLength(int) - Method in class io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions
-
- setMaxAgeSeconds(long) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set value for max age in caching headers
- setMaxAvgServeTimeNs(long) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set the max serve time in ns, above which serves are considered slow
- setMaxBytesStreaming(int) - Method in class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
Most streaming transports save responses on the client side and don't free memory used by delivered messages.
- setMaxCacheSize(int) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set the max cache size, when caching is enabled
- setMaxHandlersPerSocket(int) - Method in class io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions
-
- setMergeFormAttributes(boolean) - Method in interface io.vertx.ext.web.handler.BodyHandler
-
Set whether form attributes will be added to the request parameters.
- setMinLength(int) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Set expected session id minimum length.
- setNagHttps(boolean) - Method in interface io.vertx.ext.web.handler.CSRFHandler
-
Should the handler give warning messages if this handler is used in other than https protocols?
- setNagHttps(boolean) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Set whether a nagging log warning should be written if the session handler is
accessed over HTTP, not HTTPS
- setName(String) - Method in interface io.vertx.ext.web.Route
-
Giving a name to a route will provide this name as metadata to requests matching this route.
- setNoPush(boolean) - Method in class io.vertx.ext.web.Http2PushMapping
-
- setOrigin(String) - Method in interface io.vertx.ext.web.handler.CSRFHandler
-
Set the origin for this server.
- setOrigin(String) - Method in class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
Set the origin to be verified before a websocket upgrade happens.
- setOrigin(String) - Method in interface io.vertx.ext.web.handler.WebAuthnHandler
-
Set the Origin to be validated by the webauthn object.
- setOutboundPermitteds(List<PermittedOptions>) - Method in class io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions
-
- setPasswordParam(String) - Method in interface io.vertx.ext.web.handler.FormLoginHandler
-
Set the name of the form param used to submit the password
- setPingTimeout(long) - Method in class io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions
-
- setPreallocateBodyBuffer(boolean) - Method in interface io.vertx.ext.web.handler.BodyHandler
-
Pre-allocate the body buffer according to the value parsed from content-length header.
- setPRNG(VertxContextPRNG) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- setRawMessage(JsonObject) - Method in interface io.vertx.ext.web.handler.sockjs.BridgeEvent
-
Set the raw JSON message for the event.
- setRegexGroupsNames(List<String>) - Method in interface io.vertx.ext.web.Route
-
When you add a new route with a regular expression, you can add named capture groups for parameters.
- setRegisterWriteHandler(boolean) - Method in class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
Whether a
writeHandler should be registered on the
EventBus.
- setReplyTimeout(long) - Method in class io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions
-
- setReportOnly(boolean) - Method in interface io.vertx.ext.web.handler.CSPHandler
-
To ease deployment, CSP can be deployed in report-only mode.
- setReturnURLParam(String) - Method in interface io.vertx.ext.web.handler.FormLoginHandler
-
Set the name of the session attrioute used to specify the return url
- setSendVaryHeader(boolean) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Set whether vary header should be sent with response.
- setSession(Session) - Method in interface io.vertx.ext.web.RoutingContext
-
- setSessionCookieName(String) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Set the session cookie name
- setSessionCookiePath(String) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Set the session cookie path
- setSessionTimeout(long) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Set the session timeout
- setSessionTimeout(long) - Method in class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
Set the delay before the server sends a close event when a client receiving connection has not been seen for a while.
- setTimeout(long) - Method in interface io.vertx.ext.web.handler.CSRFHandler
-
Set the timeout for tokens generated by the handler, by default it uses the default from the session handler.
- setTimeout(long) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- setupCallback(Route) - Method in interface io.vertx.ext.web.handler.OAuth2AuthHandler
-
add the callback handler to a given route.
- setupCallback(Route) - Method in interface io.vertx.ext.web.handler.OtpAuthHandler
-
Setup the required route where authenticators to submit the challenge response.
- setupCallback(Route) - Method in interface io.vertx.ext.web.handler.WebAuthnHandler
-
The callback route to verify attestations and assertions.
- setupCredentialsCreateCallback(Route) - Method in interface io.vertx.ext.web.handler.WebAuthnHandler
-
The callback route to create registration attestations.
- setupCredentialsGetCallback(Route) - Method in interface io.vertx.ext.web.handler.WebAuthnHandler
-
The callback route to create login attestations.
- setUploadsDirectory(String) - Method in interface io.vertx.ext.web.handler.BodyHandler
-
Set the uploads directory to use.
- setupRegisterCallback(Route) - Method in interface io.vertx.ext.web.handler.OtpAuthHandler
-
Setup the optional route where authenticators are allowed to register.
- setUser(RoutingContext, User) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Set the user for the session
- setUser(RoutingContext, User, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.web.handler.SessionHandler
-
Set the user for the session
- setUser(User) - Method in interface io.vertx.ext.web.RoutingContext
-
- setUsernameParam(String) - Method in interface io.vertx.ext.web.handler.FormLoginHandler
-
Set the name of the form param used to submit the username
- setVersion(int) - Method in class io.vertx.ext.web.sstore.AbstractSession
-
- setWebRoot(String) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Deprecated.
- setWriteQueueMaxSize(int) - Method in interface io.vertx.ext.web.handler.sockjs.SockJSSocket
-
- SimpleAuthenticationHandler - Interface in io.vertx.ext.web.handler
-
A user customizable authentication handler.
- size() - Method in interface io.vertx.ext.web.FileUpload
-
- size(Handler<AsyncResult<Integer>>) - Method in interface io.vertx.ext.web.sstore.SessionStore
-
Get the number of sessions in the store.
- size() - Method in interface io.vertx.ext.web.sstore.SessionStore
-
- skipCompressionForMediaTypes(Set<String>) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Skip compression if the media type of the file to send is in the provided
mediaTypes set.
- skipCompressionForSuffixes(Set<String>) - Method in interface io.vertx.ext.web.handler.StaticHandler
-
Skip compression if the suffix of the file to send is in the provided
fileSuffixes set.
- socket() - Method in interface io.vertx.ext.web.handler.sockjs.BridgeEvent
-
Get the SockJSSocket instance corresponding to the event
- socketHandler(Handler<SockJSSocket>) - Method in interface io.vertx.ext.web.handler.sockjs.SockJSHandler
-
Set a SockJS socket handler.
- SockJSBridgeOptions - Class in io.vertx.ext.web.handler.sockjs
-
Options for configuring the event bus bridge.
- SockJSBridgeOptions(SockJSBridgeOptions) - Constructor for class io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions
-
Copy constructor
- SockJSBridgeOptions() - Constructor for class io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions
-
Default constructor
- SockJSBridgeOptions(JsonObject) - Constructor for class io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions
-
Constructor from JSON
- SockJSBridgeOptionsConverter - Class in io.vertx.ext.web.handler.sockjs
-
- SockJSBridgeOptionsConverter() - Constructor for class io.vertx.ext.web.handler.sockjs.SockJSBridgeOptionsConverter
-
- SockJSHandler - Interface in io.vertx.ext.web.handler.sockjs
-
A handler that allows you to handle SockJS connections from clients.
- SockJSHandlerOptions - Class in io.vertx.ext.web.handler.sockjs
-
Options for configuring a SockJS handler
- SockJSHandlerOptions(SockJSHandlerOptions) - Constructor for class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
Copy constructor.
- SockJSHandlerOptions() - Constructor for class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
Default constructor.
- SockJSHandlerOptions(JsonObject) - Constructor for class io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
-
Constructor to create options from JSON.
- SockJSSocket - Interface in io.vertx.ext.web.handler.sockjs
-
You interact with SockJS clients through instances of SockJS socket.
- StaticHandler - Interface in io.vertx.ext.web.handler
-
A handler for serving static resources from the file system or classpath.
- statusCode() - Method in interface io.vertx.ext.web.RoutingContext
-
If the context is being routed to failure handlers after a failure has been triggered by calling
RoutingContext.fail(int) then this will return that status code.
- subComponent() - Method in interface io.vertx.ext.web.MIMEHeader
-
Gets the parsed subcomponent part of the MIME.
- subRouter(Router) - Method in interface io.vertx.ext.web.Route
-
Use a (sub)
Router as a handler.
- subtag() - Method in interface io.vertx.ext.web.LanguageHeader
-
- subtag(int) - Method in interface io.vertx.ext.web.LanguageHeader
-
A subtag of this language header.
- subtagCount() - Method in interface io.vertx.ext.web.LanguageHeader
-