A B C D E F G H I J L M N O P Q R S T U V W
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- accept() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- Accepted - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Accepted To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Accepted() - Constructor for exception tech.greenfield.vertx.irked.status.Accepted
-
Create a 'Accepted' HTTP Response.
- Accepted(String) - Constructor for exception tech.greenfield.vertx.irked.status.Accepted
-
Create a 'Accepted' HTTP Response with a custom message in the body.
- Accepted(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Accepted
-
Create a 'Accepted' HTTP Response with a custom message in the body and an underlying cause.
- Accepted(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Accepted
-
Create a 'Accepted' HTTP Response with an underlying cause.
- addHeader(String, String) - Method in exception tech.greenfield.vertx.irked.HttpError
-
Add a header line to be written to the response's header by Irked when this status is used to send a response.
- allowForward(AllowForwardHeaders) - Method in class tech.greenfield.vertx.irked.Router
- annotations - Variable in class tech.greenfield.vertx.irked.RouteConfiguration
- App - Class in tech.greenfield.vertx.irked.example
-
Example Irked verticle
- App() - Constructor for class tech.greenfield.vertx.irked.example.App
- appendBuffer(Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Appends the specified
Bufferto the end of this Buffer. - appendBuffer(Buffer, int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Appends the specified
Bufferstarting at theoffsetusinglento the end of this Buffer. - appendByte(byte) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Appends the specified
byteto the end of the Buffer. - appendBytes(byte[]) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Appends the specified
byte[]to the end of the Buffer. - appendBytes(byte[], int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Appends the specified number of bytes from
byte[]to the end of the Buffer, starting at the given offset. - appendDouble(double) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendFloat(float) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendInt(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Appends the specified
intto the end of the Buffer. - appendIntLE(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendLong(long) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendLongLE(long) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendMedium(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendMediumLE(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendShort(short) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendShortLE(short) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendString(String) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendString(String, String) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendUnsignedByte(short) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Appends the specified
byteto the end of the Buffer. - appendUnsignedInt(long) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendUnsignedIntLE(long) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendUnsignedShort(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- appendUnsignedShortLE(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- apply(RoutingContext) - Method in class tech.greenfield.vertx.irked.RequestWrapper
- authority() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- AuthorizationToken - Class in tech.greenfield.vertx.irked.auth
-
Base class for RFC 7235 authentication/authorization tokens
- AuthorizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.AuthorizationToken
-
Constructor for token implementations is internal - use
AuthorizationToken.parse(String)to create tokens - AuthorizationToken.TokenTypes - Enum in tech.greenfield.vertx.irked.auth
B
- BadGateway - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Bad Gateway To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - BadGateway() - Constructor for exception tech.greenfield.vertx.irked.status.BadGateway
-
Create a 'Bad Gateway' HTTP Response.
- BadGateway(String) - Constructor for exception tech.greenfield.vertx.irked.status.BadGateway
-
Create a 'Bad Gateway' HTTP Response with a custom message in the body.
- BadGateway(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.BadGateway
-
Create a 'Bad Gateway' HTTP Response with a custom message in the body and an underlying cause.
- BadGateway(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.BadGateway
-
Create a 'Bad Gateway' HTTP Response with an underlying cause.
- BadRequest - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Bad Request To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - BadRequest() - Constructor for exception tech.greenfield.vertx.irked.status.BadRequest
-
Create a 'Bad Request' HTTP Response.
- BadRequest(String) - Constructor for exception tech.greenfield.vertx.irked.status.BadRequest
-
Create a 'Bad Request' HTTP Response with a custom message in the body.
- BadRequest(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.BadRequest
-
Create a 'Bad Request' HTTP Response with a custom message in the body and an underlying cause.
- BadRequest(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.BadRequest
-
Create a 'Bad Request' HTTP Response with an underlying cause.
- BASIC - tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
- BasicAuthorizationToken - Class in tech.greenfield.vertx.irked.auth
-
Implementation of the standard RFC 7617 Bearer authentication scheme token This implementation parses the token and makes the user name and password available through the API.
- BasicAuthorizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.BasicAuthorizationToken
- BasicAuthorizationToken(String) - Constructor for class tech.greenfield.vertx.irked.auth.BasicAuthorizationToken
- BEARER - tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
- BearerAuthorizationToken - Class in tech.greenfield.vertx.irked.auth
-
Implementation of the standard RFC 6750 Bearer authentication scheme token No additional parsing is done on the bearer token and the user is expected to implement their own verification on the token value that can be retrieved from the
AuthorizationToken.getToken()method. - BearerAuthorizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.BearerAuthorizationToken
- BearerAuthorizationToken(String) - Constructor for class tech.greenfield.vertx.irked.auth.BearerAuthorizationToken
- binaryHandlerID() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- binaryMessageHandler(Handler<Buffer>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- Blocking - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to label a route as "blocking" i.e.
- buildRoutesFor(String, Class<T>, Router.RoutingMethod, RequestWrapper) - Method in class tech.greenfield.vertx.irked.RouteConfiguration
C
- clear() - Method in class tech.greenfield.vertx.irked.Router
- close() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- close(short) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- close(short, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- close(short, String) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- close(short, String, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- close(Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- closeHandler(Handler<Void>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- closeReason() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- closeStatusCode() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- code - Static variable in exception tech.greenfield.vertx.irked.status.Accepted
-
HTTP status code for 'Accepted'
- code - Static variable in exception tech.greenfield.vertx.irked.status.BadGateway
-
HTTP status code for 'Bad Gateway'
- code - Static variable in exception tech.greenfield.vertx.irked.status.BadRequest
-
HTTP status code for 'Bad Request'
- code - Static variable in exception tech.greenfield.vertx.irked.status.Conflict
-
HTTP status code for 'Conflict'
- code - Static variable in exception tech.greenfield.vertx.irked.status.Continue
-
HTTP status code for 'Continue'
- code - Static variable in exception tech.greenfield.vertx.irked.status.Created
-
HTTP status code for 'Created'
- code - Static variable in exception tech.greenfield.vertx.irked.status.ExpectationFailed
-
HTTP status code for 'Expectation Failed'
- code - Static variable in exception tech.greenfield.vertx.irked.status.FailedDependency
-
HTTP status code for 'Failed Dependency'
- code - Static variable in exception tech.greenfield.vertx.irked.status.Forbidden
-
HTTP status code for 'Forbidden'
- code - Static variable in exception tech.greenfield.vertx.irked.status.Found
-
HTTP status code for 'Found'
- code - Static variable in exception tech.greenfield.vertx.irked.status.GatewayTimeout
-
HTTP status code for 'Gateway Time-out'
- code - Static variable in exception tech.greenfield.vertx.irked.status.Gone
-
HTTP status code for 'Gone'
- code - Static variable in exception tech.greenfield.vertx.irked.status.HTTPVersionNotSupported
-
HTTP status code for 'HTTP Version Not Supported'
- code - Static variable in exception tech.greenfield.vertx.irked.status.Imateapot
-
HTTP status code for 'I'm a teapot'
- code - Static variable in exception tech.greenfield.vertx.irked.status.IMUsed
-
HTTP status code for 'IM Used'
- code - Static variable in exception tech.greenfield.vertx.irked.status.InsufficientStorage
-
HTTP status code for 'Insufficient Storage'
- code - Static variable in exception tech.greenfield.vertx.irked.status.InternalServerError
-
HTTP status code for 'Internal Server Error'
- code - Static variable in exception tech.greenfield.vertx.irked.status.LengthRequired
-
HTTP status code for 'Length Required'
- code - Static variable in exception tech.greenfield.vertx.irked.status.Locked
-
HTTP status code for 'Locked'
- code - Static variable in exception tech.greenfield.vertx.irked.status.MethodNotAllowed
-
HTTP status code for 'Method Not Allowed'
- code - Static variable in exception tech.greenfield.vertx.irked.status.MovedPermanently
-
HTTP status code for 'Moved Permanently'
- code - Static variable in exception tech.greenfield.vertx.irked.status.MultipleChoices
-
HTTP status code for 'Multiple Choices'
- code - Static variable in exception tech.greenfield.vertx.irked.status.MultiStatus
-
HTTP status code for 'Multi-Status'
- code - Static variable in exception tech.greenfield.vertx.irked.status.NetworkAuthenticationRequired
-
HTTP status code for 'Network Authentication Required'
- code - Static variable in exception tech.greenfield.vertx.irked.status.NoContent
-
HTTP status code for 'No Content'
- code - Static variable in exception tech.greenfield.vertx.irked.status.NonAuthoritativeInformation
-
HTTP status code for 'Non-Authoritative Information'
- code - Static variable in exception tech.greenfield.vertx.irked.status.NotAcceptable
-
HTTP status code for 'Not Acceptable'
- code - Static variable in exception tech.greenfield.vertx.irked.status.NotFound
-
HTTP status code for 'Not Found'
- code - Static variable in exception tech.greenfield.vertx.irked.status.NotImplemented
-
HTTP status code for 'Not Implemented'
- code - Static variable in exception tech.greenfield.vertx.irked.status.NotModified
-
HTTP status code for 'Not Modified'
- code - Static variable in exception tech.greenfield.vertx.irked.status.OK
-
HTTP status code for 'OK'
- code - Static variable in exception tech.greenfield.vertx.irked.status.PartialContent
-
HTTP status code for 'Partial Content'
- code - Static variable in exception tech.greenfield.vertx.irked.status.PayloadTooLarge
-
HTTP status code for 'Payload Too Large'
- code - Static variable in exception tech.greenfield.vertx.irked.status.PaymentRequired
-
HTTP status code for 'Payment Required'
- code - Static variable in exception tech.greenfield.vertx.irked.status.PermanentRedirect
-
HTTP status code for 'Permanent Redirect'
- code - Static variable in exception tech.greenfield.vertx.irked.status.PreconditionFailed
-
HTTP status code for 'Precondition Failed'
- code - Static variable in exception tech.greenfield.vertx.irked.status.PreconditionRequired
-
HTTP status code for 'Precondition Required'
- code - Static variable in exception tech.greenfield.vertx.irked.status.Processing
-
HTTP status code for 'Processing'
- code - Static variable in exception tech.greenfield.vertx.irked.status.ProxyAuthenticationRequired
-
HTTP status code for 'Proxy Authentication Required'
- code - Static variable in exception tech.greenfield.vertx.irked.status.RangeNotSatisfiable
-
HTTP status code for 'Range Not Satisfiable'
- code - Static variable in exception tech.greenfield.vertx.irked.status.RequestHeaderFieldsTooLarge
-
HTTP status code for 'Request Header Fields Too Large'
- code - Static variable in exception tech.greenfield.vertx.irked.status.RequestTimeout
-
HTTP status code for 'Request Timeout'
- code - Static variable in exception tech.greenfield.vertx.irked.status.ResetContent
-
HTTP status code for 'Reset Content'
- code - Static variable in exception tech.greenfield.vertx.irked.status.SeeOther
-
HTTP status code for 'See Other'
- code - Static variable in exception tech.greenfield.vertx.irked.status.ServiceUnavailable
-
HTTP status code for 'Service Unavailable'
- code - Static variable in exception tech.greenfield.vertx.irked.status.SwitchingProtocols
-
HTTP status code for 'Switching Protocols'
- code - Static variable in exception tech.greenfield.vertx.irked.status.TemporaryRedirect
-
HTTP status code for 'Temporary Redirect'
- code - Static variable in exception tech.greenfield.vertx.irked.status.TooManyRequests
-
HTTP status code for 'Too Many Requests'
- code - Static variable in exception tech.greenfield.vertx.irked.status.Unauthorized
-
HTTP status code for 'Unauthorized'
- code - Static variable in exception tech.greenfield.vertx.irked.status.UnavailableForLegalReasons
-
HTTP status code for 'Unavailable For Legal Reasons'
- code - Static variable in exception tech.greenfield.vertx.irked.status.UnprocessableEntity
-
HTTP status code for 'Unprocessable Entity'
- code - Static variable in exception tech.greenfield.vertx.irked.status.UnsupportedMediaType
-
HTTP status code for 'Unsupported Media Type'
- code - Static variable in exception tech.greenfield.vertx.irked.status.UpgradeRequired
-
HTTP status code for 'Upgrade Required'
- code - Static variable in exception tech.greenfield.vertx.irked.status.URITooLong
-
HTTP status code for 'URI Too Long'
- code - Static variable in exception tech.greenfield.vertx.irked.status.UseProxy
-
HTTP status code for 'Use Proxy'
- code - Static variable in exception tech.greenfield.vertx.irked.status.VariantAlsoNegotiates
-
HTTP status code for 'Variant Also Negotiates'
- configReport() - Method in class tech.greenfield.vertx.irked.Router
- configReport(PrintStream) - Method in class tech.greenfield.vertx.irked.Router
- configure(Controller) - Method in class tech.greenfield.vertx.irked.Router
- configure(Controller, String) - Method in class tech.greenfield.vertx.irked.Router
- Conflict - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Conflict To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Conflict() - Constructor for exception tech.greenfield.vertx.irked.status.Conflict
-
Create a 'Conflict' HTTP Response.
- Conflict(String) - Constructor for exception tech.greenfield.vertx.irked.status.Conflict
-
Create a 'Conflict' HTTP Response with a custom message in the body.
- Conflict(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Conflict
-
Create a 'Conflict' HTTP Response with a custom message in the body and an underlying cause.
- Conflict(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Conflict
-
Create a 'Conflict' HTTP Response with an underlying cause.
- connect() - Method in class tech.greenfield.vertx.irked.Router
- connect(String) - Method in class tech.greenfield.vertx.irked.Router
- Connect - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle CONNECT requests.
- ConnectSpecs - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@Connect - connectWithRegex(String) - Method in class tech.greenfield.vertx.irked.Router
- Consumes - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure Route.consumes()
- ConsumesSpecs - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@Consumes - Continue - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Continue To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Continue() - Constructor for exception tech.greenfield.vertx.irked.status.Continue
-
Create a 'Continue' HTTP Response.
- Continue(String) - Constructor for exception tech.greenfield.vertx.irked.status.Continue
-
Create a 'Continue' HTTP Response with a custom message in the body.
- Continue(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Continue
-
Create a 'Continue' HTTP Response with a custom message in the body and an underlying cause.
- Continue(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Continue
-
Create a 'Continue' HTTP Response with an underlying cause.
- Controller - Class in tech.greenfield.vertx.irked
- Controller() - Constructor for class tech.greenfield.vertx.irked.Controller
- Controller.MessageHandler - Interface in tech.greenfield.vertx.irked
- Controller.RawVertxHandler - Interface in tech.greenfield.vertx.irked
- Controller.WebHandler - Interface in tech.greenfield.vertx.irked
- copy() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- create(int) - Static method in class tech.greenfield.vertx.irked.status.HttpStatuses
- Created - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Created To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Created() - Constructor for exception tech.greenfield.vertx.irked.status.Created
-
Create a 'Created' HTTP Response.
- Created(String) - Constructor for exception tech.greenfield.vertx.irked.status.Created
-
Create a 'Created' HTTP Response with a custom message in the body.
- Created(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Created
-
Create a 'Created' HTTP Response with a custom message in the body and an underlying cause.
- Created(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Created
-
Create a 'Created' HTTP Response with an underlying cause.
D
- delete() - Method in class tech.greenfield.vertx.irked.Router
- delete(String) - Method in class tech.greenfield.vertx.irked.Router
- Delete - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle DELETE requests Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all DELETE requests.
- Deletes - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@Delete - deleteWithRegex(String) - Method in class tech.greenfield.vertx.irked.Router
- describeLocation(List<JsonMappingException.Reference>, JsonLocation) - Static method in class tech.greenfield.vertx.irked.helpers.JsonDecodingExceptionFormatter
- describePath(List<JsonMappingException.Reference>) - Static method in class tech.greenfield.vertx.irked.helpers.JsonDecodingExceptionFormatter
- DIGEST - tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
- DigestAuthenticate - Exception in tech.greenfield.vertx.irked.helpers
- DigestAuthenticate(String) - Constructor for exception tech.greenfield.vertx.irked.helpers.DigestAuthenticate
- DigestAuthenticate(String, boolean) - Constructor for exception tech.greenfield.vertx.irked.helpers.DigestAuthenticate
- DigestAuthenticate(String, String) - Constructor for exception tech.greenfield.vertx.irked.helpers.DigestAuthenticate
- DigestAuthenticate(String, String, boolean) - Constructor for exception tech.greenfield.vertx.irked.helpers.DigestAuthenticate
- DigestAuthenticate(String, String, String, String) - Constructor for exception tech.greenfield.vertx.irked.helpers.DigestAuthenticate
- DigestAuthenticate(String, String, String, String, boolean) - Constructor for exception tech.greenfield.vertx.irked.helpers.DigestAuthenticate
- DigestAuthorizationToken - Class in tech.greenfield.vertx.irked.auth
-
Implementation of the standard RFC 7616 Digest authentication scheme token Complete implementation of token validation and data access is provided, depending on the specified digest algorithm being available from the JVM cryptography provider.
- DigestAuthorizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
- DigestAuthorizationToken(String) - Constructor for class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
- DigestAuthorizationToken(String, String, String, Buffer, String, String, String, String) - Constructor for class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
- DigestAuthorizationToken(String, String, String, Buffer, String, String, String, String, String) - Constructor for class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
- DigestAuthorizationToken(String, String, String, Buffer, String, String, String, String, String, String) - Constructor for class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
-
Helper constructor to compute a new Digest authorization header
- DigestAuthorizationToken(String, String, String, String, String, String) - Constructor for class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
- DigestAuthorizationToken(String, String, String, String, String, String, String) - Constructor for class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
- drainHandler(Handler<Void>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
E
- end() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- end(Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- end(Buffer, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- end(Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- endHandler(Handler<Void>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- Endpoint - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle all HTTP requests Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all requests.
- Endpoints - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@Endpoint - errorHandler(int, Handler<RoutingContext>) - Method in class tech.greenfield.vertx.irked.Router
- ExampleAPIv1 - Class in tech.greenfield.vertx.irked.example
- ExampleAPIv1() - Constructor for class tech.greenfield.vertx.irked.example.ExampleAPIv1
- ExampleAPIv2 - Class in tech.greenfield.vertx.irked.example
- ExampleAPIv2() - Constructor for class tech.greenfield.vertx.irked.example.ExampleAPIv2
- exception() - Method in annotation type tech.greenfield.vertx.irked.annotations.OnFail
- exceptionHandler(Handler<Throwable>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- ExpectationFailed - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Expectation Failed To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - ExpectationFailed() - Constructor for exception tech.greenfield.vertx.irked.status.ExpectationFailed
-
Create a 'Expectation Failed' HTTP Response.
- ExpectationFailed(String) - Constructor for exception tech.greenfield.vertx.irked.status.ExpectationFailed
-
Create a 'Expectation Failed' HTTP Response with a custom message in the body.
- ExpectationFailed(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.ExpectationFailed
-
Create a 'Expectation Failed' HTTP Response with a custom message in the body and an underlying cause.
- ExpectationFailed(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.ExpectationFailed
-
Create a 'Expectation Failed' HTTP Response with an underlying cause.
F
- fail(int) - Method in class tech.greenfield.vertx.irked.Request
- fail(Throwable) - Method in class tech.greenfield.vertx.irked.Request
- fail(HttpError) - Method in class tech.greenfield.vertx.irked.Request
-
Fail helper that wraps Irked HTTP errors in Vert.x-web (final?!) HttpException class that is better handled by the RoutingContextImpl
- FailedDependency - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Failed Dependency To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - FailedDependency() - Constructor for exception tech.greenfield.vertx.irked.status.FailedDependency
-
Create a 'Failed Dependency' HTTP Response.
- FailedDependency(String) - Constructor for exception tech.greenfield.vertx.irked.status.FailedDependency
-
Create a 'Failed Dependency' HTTP Response with a custom message in the body.
- FailedDependency(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.FailedDependency
-
Create a 'Failed Dependency' HTTP Response with a custom message in the body and an underlying cause.
- FailedDependency(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.FailedDependency
-
Create a 'Failed Dependency' HTTP Response with an underlying cause.
- failureHandler() - Static method in class tech.greenfield.vertx.irked.Request
-
Helper to easily configure standard failure handlers.
- fetch(long) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- findFailure(Class<G>) - Method in class tech.greenfield.vertx.irked.Request
-
When looking at a failed routing context, try to find a specific type of exception from the failure and cause chain.
- findRoutingContextResolver() - Method in class tech.greenfield.vertx.irked.RouteConfiguration
-
Check if we can statically locate an appropriate routing context supplier in the controller implementation.
- Forbidden - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Forbidden To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Forbidden() - Constructor for exception tech.greenfield.vertx.irked.status.Forbidden
-
Create a 'Forbidden' HTTP Response.
- Forbidden(String) - Constructor for exception tech.greenfield.vertx.irked.status.Forbidden
-
Create a 'Forbidden' HTTP Response with a custom message in the body.
- Forbidden(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Forbidden
-
Create a 'Forbidden' HTTP Response with a custom message in the body and an underlying cause.
- Forbidden(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Forbidden
-
Create a 'Forbidden' HTTP Response with an underlying cause.
- formatFriendlyErrorMessage(DecodeException) - Static method in class tech.greenfield.vertx.irked.helpers.JsonDecodingExceptionFormatter
- formatInvalidFormatMessage(InvalidFormatException) - Static method in class tech.greenfield.vertx.irked.helpers.JsonDecodingExceptionFormatter
- formatJsonMappingMessage(JsonMappingException) - Static method in class tech.greenfield.vertx.irked.helpers.JsonDecodingExceptionFormatter
- formatUnrecognizedPropertyMessage(UnrecognizedPropertyException) - Static method in class tech.greenfield.vertx.irked.helpers.JsonDecodingExceptionFormatter
- Found - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Found To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Found() - Constructor for exception tech.greenfield.vertx.irked.status.Found
-
Create a 'Found' HTTP Response.
- Found(String) - Constructor for exception tech.greenfield.vertx.irked.status.Found
-
Create a 'Found' HTTP Response with a custom message in the body.
- Found(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Found
-
Create a 'Found' HTTP Response with a custom message in the body and an underlying cause.
- Found(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Found
-
Create a 'Found' HTTP Response with an underlying cause.
- frameHandler(Handler<WebSocketFrame>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
G
- GatewayTimeout - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Gateway Time-out To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - GatewayTimeout() - Constructor for exception tech.greenfield.vertx.irked.status.GatewayTimeout
-
Create a 'Gateway Time-out' HTTP Response.
- GatewayTimeout(String) - Constructor for exception tech.greenfield.vertx.irked.status.GatewayTimeout
-
Create a 'Gateway Time-out' HTTP Response with a custom message in the body.
- GatewayTimeout(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.GatewayTimeout
-
Create a 'Gateway Time-out' HTTP Response with a custom message in the body and an underlying cause.
- GatewayTimeout(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.GatewayTimeout
-
Create a 'Gateway Time-out' HTTP Response with an underlying cause.
- generate(String, String) - Method in class tech.greenfield.vertx.irked.generators.StatusClassGenerator
- generateAuthrizationHeader() - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
- generateNonce(String, long) - Static method in exception tech.greenfield.vertx.irked.helpers.DigestAuthenticate
- get() - Method in class tech.greenfield.vertx.irked.Router
- get(String) - Method in class tech.greenfield.vertx.irked.Router
- Get - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle GET requests Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all GET requests.
- getAlgorithm() - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
-
Returns the digest algorithm claimed in the authorization token.
- getAnnotation(Class<T>) - Method in class tech.greenfield.vertx.irked.RouteConfiguration
- getAnnotation(Class<T>) - Method in class tech.greenfield.vertx.irked.RouteConfigurationField
- getAnnotation(Class<T>) - Method in class tech.greenfield.vertx.irked.RouteConfigurationMethod
- getAuthorization() - Method in class tech.greenfield.vertx.irked.Request
-
Helper for authorization header parsing
- getBodyAs(Class<T>) - Method in class tech.greenfield.vertx.irked.Request
-
Convert request body to an instance of the specified POJO Currently the followed request body content types are supported: *
application/json- the body is read usingRoutingContext.getBodyAsJson()then mapped to the bean type usingJsonObject.mapTo(Class)*application/x-www-form-urlencoded- the body is read usingHttpServerRequest.formAttributes()into aJsonObjectas keys with string values, then mapped to the bean type usingJsonObject.mapTo(Class). - getBuffer(int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getByte(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getByteBuf() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Deprecated.removed from public API in Vert.x 5
- getBytes() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getBytes(byte[]) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Transfers the content of the Buffer into a
byte[]. - getBytes(byte[], int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Transfers the content of the Buffer into a
byte[]at the specific destination. - getBytes(int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getBytes(int, int, byte[]) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Transfers the content of the Buffer starting at position
startand ending at positionend - 1into abyte[]. - getBytes(int, int, byte[], int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Transfers the content of the Buffer starting at position
startand ending at positionend - 1into abyte[]at the specific destination. - getController() - Method in class tech.greenfield.vertx.irked.RouteConfigurationField
- getDouble(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getFloat(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getHeaders() - Method in exception tech.greenfield.vertx.irked.HttpError
-
Retrieve a reference to the current set of additional headers.
- getInt(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getIntLE(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getLong(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getLongLE(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getMedium(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getMediumLE(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getName() - Method in class tech.greenfield.vertx.irked.RouteConfiguration
- getName() - Method in class tech.greenfield.vertx.irked.RouteConfigurationField
- getName() - Method in class tech.greenfield.vertx.irked.RouteConfigurationMethod
- getOpaque() - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
-
Retrieve the opaque value entrusted to the client in the challenge
- getParameter(String) - Method in class tech.greenfield.vertx.irked.auth.ParameterEncodedAuthorizationToken
- getPassword() - Method in class tech.greenfield.vertx.irked.auth.BasicAuthorizationToken
- getRequestContext(Request) - Method in class tech.greenfield.vertx.irked.Controller
-
Controller implementations should override this to generate local request implementation (wrapped routing contexts).
- getResult() - Method in class tech.greenfield.vertx.irked.auth.HOBAAuthorizationToken
- getRoutes() - Method in class tech.greenfield.vertx.irked.Router
- Gets - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@Get - getShort(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getShortLE(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getState() - Method in class io.vertx.ext.web.impl.RouteImplHelper
-
Expose the parsed
RouteStateresult. - getStatusCode() - Method in exception tech.greenfield.vertx.irked.HttpError
-
Retrieve this instance's numeric HTTP status code
- getStatusText() - Method in exception tech.greenfield.vertx.irked.HttpError
-
Retrieve this instance's HTTP status message
- getString(int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getString(int, int, String) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getToken() - Method in class tech.greenfield.vertx.irked.auth.AuthorizationToken
-
Retrieve the authorization token text
- getType() - Method in class tech.greenfield.vertx.irked.auth.AuthorizationToken
-
Retrieve the IANA HTTP Authentication Scheme Name this token is an implementation of
- getUnsignedByte(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getUnsignedInt(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getUnsignedIntLE(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getUnsignedMedium(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getUnsignedMediumLE(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getUnsignedShort(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getUnsignedShortLE(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- getUsername() - Method in class tech.greenfield.vertx.irked.auth.BasicAuthorizationToken
- getUsername() - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
-
Retrieve the username claimed in the token
- getWithRegex(String) - Method in class tech.greenfield.vertx.irked.Router
- Gone - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Gone To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Gone() - Constructor for exception tech.greenfield.vertx.irked.status.Gone
-
Create a 'Gone' HTTP Response.
- Gone(String) - Constructor for exception tech.greenfield.vertx.irked.status.Gone
-
Create a 'Gone' HTTP Response with a custom message in the body.
- Gone(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Gone
-
Create a 'Gone' HTTP Response with a custom message in the body and an underlying cause.
- Gone(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Gone
-
Create a 'Gone' HTTP Response with an underlying cause.
H
- handle(HttpServerRequest) - Method in class tech.greenfield.vertx.irked.Router
- handle(RoutingContext) - Method in class tech.greenfield.vertx.irked.RequestWrapper
- handle(RoutingContext) - Method in class tech.greenfield.vertx.irked.WebSocketUpgradeRequestWrapper
- handleContext(RoutingContext) - Method in class tech.greenfield.vertx.irked.Router
- handleFailure(RoutingContext) - Method in class tech.greenfield.vertx.irked.Router
- handleFailure(Throwable) - Method in class tech.greenfield.vertx.irked.Request
-
Helper failure handler for Promise/CompletableFuture users.
- handlePossibleFailure(V, Throwable) - Method in class tech.greenfield.vertx.irked.Request
-
Helper failure handler for CompletableFuture users.
- handler(Handler<Buffer>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- handleUserException(Request, Throwable, String) - Method in class tech.greenfield.vertx.irked.RouteConfiguration
-
Handling logic for user exceptions thrown from a handler invocation.
- handleUserException(WebSocketMessage, Throwable, String) - Method in class tech.greenfield.vertx.irked.RouteConfiguration
-
Handling logic for user exceptions thrown from a message handler invocation.
- hash(Buffer) - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
-
Use the digest algorithm specified in the token to hash text according to RFC 7616
- hash(String) - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
-
Use the digest algorithm specified in the token to hash text according to RFC 7616
- head() - Method in class tech.greenfield.vertx.irked.Router
- head(String) - Method in class tech.greenfield.vertx.irked.Router
- Head - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle HEAD requests Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all HEAD requests.
- headers() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- Heads - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@Head - headWithRegex(String) - Method in class tech.greenfield.vertx.irked.Router
- HOB - tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
- HOBAAuthorizationToken - Class in tech.greenfield.vertx.irked.auth
-
Implementation of the standard RFC 7486 Mututal authentication scheme token The token parameters are available from the
ParameterEncodedAuthorizationToken.getParameter(String)method, though currently no validation is performed to make sure that all required fields are present. - HOBAAuthorizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.HOBAAuthorizationToken
- HOBAAuthorizationToken(String) - Constructor for class tech.greenfield.vertx.irked.auth.HOBAAuthorizationToken
- host() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- HTTP_STATUS_CODES - Static variable in class tech.greenfield.vertx.irked.status.HttpStatuses
- HttpError - Exception in tech.greenfield.vertx.irked
-
Top class representing HTTP response headers in Irked.
- HttpError(int, String) - Constructor for exception tech.greenfield.vertx.irked.HttpError
-
Creates a new HttpError instance with the specified status code and status text.
- HttpError(int, String, String) - Constructor for exception tech.greenfield.vertx.irked.HttpError
-
Creates a new HttpError instance with the specified status code and status text and a custom error message to be serialized out in default JSON serialization.
- HttpError(int, String, String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.HttpError
-
Creates a new HttpError instance with the specified status code and status text and a causing exception.
- HttpError(int, String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.HttpError
-
Creates a new HttpError instance with the specified status code and status text and a causing exception.
- HttpError.UncheckedHttpError - Exception in tech.greenfield.vertx.irked
-
A RuntimeException wrapper for HttpError to allow it to be thrown from within non-declaring code.
- HttpStatuses - Class in tech.greenfield.vertx.irked.status
- HttpStatuses() - Constructor for class tech.greenfield.vertx.irked.status.HttpStatuses
- HTTPVersionNotSupported - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for HTTP Version Not Supported To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - HTTPVersionNotSupported() - Constructor for exception tech.greenfield.vertx.irked.status.HTTPVersionNotSupported
-
Create a 'HTTP Version Not Supported' HTTP Response.
- HTTPVersionNotSupported(String) - Constructor for exception tech.greenfield.vertx.irked.status.HTTPVersionNotSupported
-
Create a 'HTTP Version Not Supported' HTTP Response with a custom message in the body.
- HTTPVersionNotSupported(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.HTTPVersionNotSupported
-
Create a 'HTTP Version Not Supported' HTTP Response with a custom message in the body and an underlying cause.
- HTTPVersionNotSupported(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.HTTPVersionNotSupported
-
Create a 'HTTP Version Not Supported' HTTP Response with an underlying cause.
I
- Imateapot - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for I'm a teapot To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Imateapot() - Constructor for exception tech.greenfield.vertx.irked.status.Imateapot
-
Create a 'I'm a teapot' HTTP Response.
- Imateapot(String) - Constructor for exception tech.greenfield.vertx.irked.status.Imateapot
-
Create a 'I'm a teapot' HTTP Response with a custom message in the body.
- Imateapot(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Imateapot
-
Create a 'I'm a teapot' HTTP Response with a custom message in the body and an underlying cause.
- Imateapot(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Imateapot
-
Create a 'I'm a teapot' HTTP Response with an underlying cause.
- impl - Variable in class tech.greenfield.vertx.irked.RouteConfiguration
- IMUsed - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for IM Used To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - IMUsed() - Constructor for exception tech.greenfield.vertx.irked.status.IMUsed
-
Create a 'IM Used' HTTP Response.
- IMUsed(String) - Constructor for exception tech.greenfield.vertx.irked.status.IMUsed
-
Create a 'IM Used' HTTP Response with a custom message in the body.
- IMUsed(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.IMUsed
-
Create a 'IM Used' HTTP Response with a custom message in the body and an underlying cause.
- IMUsed(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.IMUsed
-
Create a 'IM Used' HTTP Response with an underlying cause.
- instances() - Static method in enum tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
- InsufficientStorage - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Insufficient Storage To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - InsufficientStorage() - Constructor for exception tech.greenfield.vertx.irked.status.InsufficientStorage
-
Create a 'Insufficient Storage' HTTP Response.
- InsufficientStorage(String) - Constructor for exception tech.greenfield.vertx.irked.status.InsufficientStorage
-
Create a 'Insufficient Storage' HTTP Response with a custom message in the body.
- InsufficientStorage(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.InsufficientStorage
-
Create a 'Insufficient Storage' HTTP Response with a custom message in the body and an underlying cause.
- InsufficientStorage(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.InsufficientStorage
-
Create a 'Insufficient Storage' HTTP Response with an underlying cause.
- InternalServerError - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Internal Server Error To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - InternalServerError() - Constructor for exception tech.greenfield.vertx.irked.status.InternalServerError
-
Create a 'Internal Server Error' HTTP Response.
- InternalServerError(String) - Constructor for exception tech.greenfield.vertx.irked.status.InternalServerError
-
Create a 'Internal Server Error' HTTP Response with a custom message in the body.
- InternalServerError(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.InternalServerError
-
Create a 'Internal Server Error' HTTP Response with a custom message in the body and an underlying cause.
- InternalServerError(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.InternalServerError
-
Create a 'Internal Server Error' HTTP Response with an underlying cause.
- InvalidRouteConfiguration - Exception in tech.greenfield.vertx.irked.exceptions
- InvalidRouteConfiguration(String) - Constructor for exception tech.greenfield.vertx.irked.exceptions.InvalidRouteConfiguration
- io.vertx.ext.web.impl - package io.vertx.ext.web.impl
- irked(Vertx) - Static method in class tech.greenfield.vertx.irked.Irked
-
Vert.x-styled Irked factory method.
- Irked - Class in tech.greenfield.vertx.irked
-
Helper for creating Irked routers
- Irked(Vertx) - Constructor for class tech.greenfield.vertx.irked.Irked
-
Deprecated, for removal: This API element is subject to removal in a future version.Will be removed in 5.0. Please use
Irked.irked(Vertx)instead - is(String) - Method in class tech.greenfield.vertx.irked.auth.AuthorizationToken
-
Check whether the token implementation implements the specified IANA HTTP Authentication Scheme Name
- isBinary() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Check whether the incoming message is binary or text
- isClientError() - Method in exception tech.greenfield.vertx.irked.HttpError
-
Check whether this instance represents a 4xx class HTTP response
- isClosed() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- isController() - Method in class tech.greenfield.vertx.irked.RouteConfigurationField
- isController() - Method in class tech.greenfield.vertx.irked.RouteConfigurationMethod
- isError() - Method in exception tech.greenfield.vertx.irked.HttpError
-
Check whether this instance represents a "error class" HTTP response
- isHead() - Method in class tech.greenfield.vertx.irked.Request
-
Check if this request is a HEAD request, in which case
Request.sendContent(Buffer, HttpError, String)will not send any content (but will send all headers including content-type and content-length). - isNonceStale(int) - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
-
Check if the nonce is stale according to the nonce format suggested in RFC7616.
- isOK() - Method in exception tech.greenfield.vertx.irked.HttpError
-
Check whether this instance represents a 2xx class HTTP response
- isRedirect() - Method in exception tech.greenfield.vertx.irked.HttpError
-
Check whether this instance represents a 3xx class HTTP response
- isServerError() - Method in exception tech.greenfield.vertx.irked.HttpError
-
Check whether this instance represents a 5xx class HTTP response
- isSsl() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- isValid() - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
-
Check if the digest token is valid and additional test operations can work on it.
J
- JsonDecodingExceptionFormatter - Class in tech.greenfield.vertx.irked.helpers
- JsonDecodingExceptionFormatter() - Constructor for class tech.greenfield.vertx.irked.helpers.JsonDecodingExceptionFormatter
L
- length() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- LengthRequired - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Length Required To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - LengthRequired() - Constructor for exception tech.greenfield.vertx.irked.status.LengthRequired
-
Create a 'Length Required' HTTP Response.
- LengthRequired(String) - Constructor for exception tech.greenfield.vertx.irked.status.LengthRequired
-
Create a 'Length Required' HTTP Response with a custom message in the body.
- LengthRequired(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.LengthRequired
-
Create a 'Length Required' HTTP Response with a custom message in the body and an underlying cause.
- LengthRequired(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.LengthRequired
-
Create a 'Length Required' HTTP Response with an underlying cause.
- listParameters() - Method in class io.vertx.ext.web.impl.RouteImplHelper
-
Retrieve the list of named path parameters that are specified by the submitted path
- localAddress() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- Locked - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Locked To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Locked() - Constructor for exception tech.greenfield.vertx.irked.status.Locked
-
Create a 'Locked' HTTP Response.
- Locked(String) - Constructor for exception tech.greenfield.vertx.irked.status.Locked
-
Create a 'Locked' HTTP Response with a custom message in the body.
- Locked(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Locked
-
Create a 'Locked' HTTP Response with a custom message in the body and an underlying cause.
- Locked(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Locked
-
Create a 'Locked' HTTP Response with an underlying cause.
- log - Variable in class tech.greenfield.vertx.irked.RouteConfiguration
- logger() - Static method in class tech.greenfield.vertx.irked.Irked
-
Create a
LoggerHandlerinstance to log HTTP access under a simple SLF4J logger name. - logger(LoggerFormat) - Static method in class tech.greenfield.vertx.irked.Irked
-
Create a
LoggerHandlerinstance to log HTTP access under a simple SLF4J logger name. - logger(String, LoggerFormat) - Static method in class tech.greenfield.vertx.irked.Irked
-
Create a
LoggerHandlerinstance to log HTTP access under a simple SLF4J logger name.
M
- main(String...) - Static method in class tech.greenfield.vertx.irked.generators.StatusClassGenerator
- metadata() - Method in class tech.greenfield.vertx.irked.Router
- MethodNotAllowed - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Method Not Allowed To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - MethodNotAllowed() - Constructor for exception tech.greenfield.vertx.irked.status.MethodNotAllowed
-
Create a 'Method Not Allowed' HTTP Response.
- MethodNotAllowed(String) - Constructor for exception tech.greenfield.vertx.irked.status.MethodNotAllowed
-
Create a 'Method Not Allowed' HTTP Response with a custom message in the body.
- MethodNotAllowed(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.MethodNotAllowed
-
Create a 'Method Not Allowed' HTTP Response with a custom message in the body and an underlying cause.
- MethodNotAllowed(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.MethodNotAllowed
-
Create a 'Method Not Allowed' HTTP Response with an underlying cause.
- MissingBodyException - Exception in tech.greenfield.vertx.irked.exceptions
- MissingBodyException() - Constructor for exception tech.greenfield.vertx.irked.exceptions.MissingBodyException
- modifiedHandler(Handler<Router>) - Method in class tech.greenfield.vertx.irked.Router
- mountSubRouter(String, Router) - Method in class tech.greenfield.vertx.irked.Router
-
Deprecated.
- MovedPermanently - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Moved Permanently To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - MovedPermanently() - Constructor for exception tech.greenfield.vertx.irked.status.MovedPermanently
-
Create a 'Moved Permanently' HTTP Response.
- MovedPermanently(String) - Constructor for exception tech.greenfield.vertx.irked.status.MovedPermanently
-
Create a 'Moved Permanently' HTTP Response with a custom message in the body.
- MovedPermanently(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.MovedPermanently
-
Create a 'Moved Permanently' HTTP Response with a custom message in the body and an underlying cause.
- MovedPermanently(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.MovedPermanently
-
Create a 'Moved Permanently' HTTP Response with an underlying cause.
- MultipleChoices - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Multiple Choices To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - MultipleChoices() - Constructor for exception tech.greenfield.vertx.irked.status.MultipleChoices
-
Create a 'Multiple Choices' HTTP Response.
- MultipleChoices(String) - Constructor for exception tech.greenfield.vertx.irked.status.MultipleChoices
-
Create a 'Multiple Choices' HTTP Response with a custom message in the body.
- MultipleChoices(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.MultipleChoices
-
Create a 'Multiple Choices' HTTP Response with a custom message in the body and an underlying cause.
- MultipleChoices(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.MultipleChoices
-
Create a 'Multiple Choices' HTTP Response with an underlying cause.
- MultiStatus - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Multi-Status To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - MultiStatus() - Constructor for exception tech.greenfield.vertx.irked.status.MultiStatus
-
Create a 'Multi-Status' HTTP Response.
- MultiStatus(String) - Constructor for exception tech.greenfield.vertx.irked.status.MultiStatus
-
Create a 'Multi-Status' HTTP Response with a custom message in the body.
- MultiStatus(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.MultiStatus
-
Create a 'Multi-Status' HTTP Response with a custom message in the body and an underlying cause.
- MultiStatus(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.MultiStatus
-
Create a 'Multi-Status' HTTP Response with an underlying cause.
- MUTUAL - tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
- MutualAuthorizationToken - Class in tech.greenfield.vertx.irked.auth
-
Implementation of the standard RFC 8120 Mututal authentication scheme token The token parameters are available from the
ParameterEncodedAuthorizationToken.getParameter(String)method, though currently no validation is performed to make sure that all required fields are present. - MutualAuthorizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.MutualAuthorizationToken
- MutualAuthorizationToken(String) - Constructor for class tech.greenfield.vertx.irked.auth.MutualAuthorizationToken
N
- Name - Annotation Type in tech.greenfield.vertx.irked.annotations
-
A name annotation useful for dynamic parameter passing.
- needUpgrade() - Method in class tech.greenfield.vertx.irked.Request
-
Check if the client requested a connection upgrade, regardless which type of upgrade is required.
- needUpgrade(String) - Method in class tech.greenfield.vertx.irked.Request
-
check if the client requested a specific connection upgrade.
- NEGOTIATE - tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
- NegotiateAuthorizationToken - Class in tech.greenfield.vertx.irked.auth
-
Implementation of the standard RFC 4559 Negotiate authentication scheme token This implementation does not decode the GSS API data and it is available as plain text from the
AuthorizationToken.getToken()method. - NegotiateAuthorizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.NegotiateAuthorizationToken
- NegotiateAuthorizationToken(String) - Constructor for class tech.greenfield.vertx.irked.auth.NegotiateAuthorizationToken
- NetworkAuthenticationRequired - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Network Authentication Required To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - NetworkAuthenticationRequired() - Constructor for exception tech.greenfield.vertx.irked.status.NetworkAuthenticationRequired
-
Create a 'Network Authentication Required' HTTP Response.
- NetworkAuthenticationRequired(String) - Constructor for exception tech.greenfield.vertx.irked.status.NetworkAuthenticationRequired
-
Create a 'Network Authentication Required' HTTP Response with a custom message in the body.
- NetworkAuthenticationRequired(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NetworkAuthenticationRequired
-
Create a 'Network Authentication Required' HTTP Response with a custom message in the body and an underlying cause.
- NetworkAuthenticationRequired(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NetworkAuthenticationRequired
-
Create a 'Network Authentication Required' HTTP Response with an underlying cause.
- next() - Method in class tech.greenfield.vertx.irked.Request
- next(T) - Method in class tech.greenfield.vertx.irked.Request
-
Helper to attach
Request.next()to Vert.xFuture.onSuccess(io.vertx.core.Handler)handler. - NoContent - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for No Content To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - NoContent() - Constructor for exception tech.greenfield.vertx.irked.status.NoContent
-
Create a 'No Content' HTTP Response.
- NoContent(String) - Constructor for exception tech.greenfield.vertx.irked.status.NoContent
-
Create a 'No Content' HTTP Response with a custom message in the body.
- NoContent(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NoContent
-
Create a 'No Content' HTTP Response with a custom message in the body and an underlying cause.
- NoContent(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NoContent
-
Create a 'No Content' HTTP Response with an underlying cause.
- NonAuthoritativeInformation - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Non-Authoritative Information To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - NonAuthoritativeInformation() - Constructor for exception tech.greenfield.vertx.irked.status.NonAuthoritativeInformation
-
Create a 'Non-Authoritative Information' HTTP Response.
- NonAuthoritativeInformation(String) - Constructor for exception tech.greenfield.vertx.irked.status.NonAuthoritativeInformation
-
Create a 'Non-Authoritative Information' HTTP Response with a custom message in the body.
- NonAuthoritativeInformation(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NonAuthoritativeInformation
-
Create a 'Non-Authoritative Information' HTTP Response with a custom message in the body and an underlying cause.
- NonAuthoritativeInformation(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NonAuthoritativeInformation
-
Create a 'Non-Authoritative Information' HTTP Response with an underlying cause.
- NotAcceptable - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Not Acceptable To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - NotAcceptable() - Constructor for exception tech.greenfield.vertx.irked.status.NotAcceptable
-
Create a 'Not Acceptable' HTTP Response.
- NotAcceptable(String) - Constructor for exception tech.greenfield.vertx.irked.status.NotAcceptable
-
Create a 'Not Acceptable' HTTP Response with a custom message in the body.
- NotAcceptable(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NotAcceptable
-
Create a 'Not Acceptable' HTTP Response with a custom message in the body and an underlying cause.
- NotAcceptable(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NotAcceptable
-
Create a 'Not Acceptable' HTTP Response with an underlying cause.
- NotFound - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Not Found To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - NotFound() - Constructor for exception tech.greenfield.vertx.irked.status.NotFound
-
Create a 'Not Found' HTTP Response.
- NotFound(String) - Constructor for exception tech.greenfield.vertx.irked.status.NotFound
-
Create a 'Not Found' HTTP Response with a custom message in the body.
- NotFound(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NotFound
-
Create a 'Not Found' HTTP Response with a custom message in the body and an underlying cause.
- NotFound(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NotFound
-
Create a 'Not Found' HTTP Response with an underlying cause.
- NotImplemented - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Not Implemented To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - NotImplemented() - Constructor for exception tech.greenfield.vertx.irked.status.NotImplemented
-
Create a 'Not Implemented' HTTP Response.
- NotImplemented(String) - Constructor for exception tech.greenfield.vertx.irked.status.NotImplemented
-
Create a 'Not Implemented' HTTP Response with a custom message in the body.
- NotImplemented(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NotImplemented
-
Create a 'Not Implemented' HTTP Response with a custom message in the body and an underlying cause.
- NotImplemented(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NotImplemented
-
Create a 'Not Implemented' HTTP Response with an underlying cause.
- NotModified - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Not Modified To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - NotModified() - Constructor for exception tech.greenfield.vertx.irked.status.NotModified
-
Create a 'Not Modified' HTTP Response.
- NotModified(String) - Constructor for exception tech.greenfield.vertx.irked.status.NotModified
-
Create a 'Not Modified' HTTP Response with a custom message in the body.
- NotModified(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NotModified
-
Create a 'Not Modified' HTTP Response with a custom message in the body and an underlying cause.
- NotModified(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.NotModified
-
Create a 'Not Modified' HTTP Response with an underlying cause.
- NULL - tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
- NullAuthorizationToken - Class in tech.greenfield.vertx.irked.auth
-
An
AuthorizationTokenimplementation to specify that no authorization token was present - NullAuthorizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.NullAuthorizationToken
O
- OAUTH - tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
- OAuthAuthorizationToken - Class in tech.greenfield.vertx.irked.auth
-
Implementation of the standard RFC 5849 OAuth authentication scheme token.
- OAuthAuthorizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.OAuthAuthorizationToken
-
C'tor for unmarshaling for a headerless request
- OAuthAuthorizationToken(String) - Constructor for class tech.greenfield.vertx.irked.auth.OAuthAuthorizationToken
-
C'tor for unmarshaling from an authorization header
- OK - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for OK To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - OK() - Constructor for exception tech.greenfield.vertx.irked.status.OK
-
Create a 'OK' HTTP Response.
- OK(String) - Constructor for exception tech.greenfield.vertx.irked.status.OK
-
Create a 'OK' HTTP Response with a custom message in the body.
- OK(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.OK
-
Create a 'OK' HTTP Response with a custom message in the body and an underlying cause.
- OK(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.OK
-
Create a 'OK' HTTP Response with an underlying cause.
- OnFail - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle requests that have failed
- OnFailures - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@OnFail - onOrder(int) - Method in class tech.greenfield.vertx.irked.RequestWrapper
-
This method is only implemented to support root level Vert.x handler that rely on the onOrder() method to be called (e.g.
- options() - Method in class tech.greenfield.vertx.irked.Router
- options(String) - Method in class tech.greenfield.vertx.irked.Router
- Options - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle OPTIONS requests
- optionsWithRegex(String) - Method in class tech.greenfield.vertx.irked.Router
- Order - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure an explicit "order" for method handlers.
P
- ParameterEncodedAuthorizationToken - Class in tech.greenfield.vertx.irked.auth
-
Base implementation for authentication schemes where the value is a white-space separated list of parameters in the format
key=valueorkey="long value" - ParameterEncodedAuthorizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.ParameterEncodedAuthorizationToken
- parse(String) - Static method in class tech.greenfield.vertx.irked.auth.AuthorizationToken
-
Parse an Authorization header text to create a specific token implementation This method uses the convention of the first word in the Authorization value being the IANA HTTP Authentication Scheme Name, to dynamically load an appropriate implementation from the tech.greenfield.vertx.irked.auth.AuthorizationToken service loader.
- parseParameters(String) - Static method in class tech.greenfield.vertx.irked.auth.ParameterEncodedAuthorizationToken
- PartialContent - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Partial Content To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - PartialContent() - Constructor for exception tech.greenfield.vertx.irked.status.PartialContent
-
Create a 'Partial Content' HTTP Response.
- PartialContent(String) - Constructor for exception tech.greenfield.vertx.irked.status.PartialContent
-
Create a 'Partial Content' HTTP Response with a custom message in the body.
- PartialContent(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PartialContent
-
Create a 'Partial Content' HTTP Response with a custom message in the body and an underlying cause.
- PartialContent(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PartialContent
-
Create a 'Partial Content' HTTP Response with an underlying cause.
- patch() - Method in class tech.greenfield.vertx.irked.Router
- patch(String) - Method in class tech.greenfield.vertx.irked.Router
- Patch - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle PATCH requests Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all PATCH requests.
- Patches - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@Patch - patchWithRegex(String) - Method in class tech.greenfield.vertx.irked.Router
- path() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- pathsForAnnotation(String, Class<T>) - Method in class tech.greenfield.vertx.irked.RouteConfiguration
- pause() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- PayloadTooLarge - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Payload Too Large To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - PayloadTooLarge() - Constructor for exception tech.greenfield.vertx.irked.status.PayloadTooLarge
-
Create a 'Payload Too Large' HTTP Response.
- PayloadTooLarge(String) - Constructor for exception tech.greenfield.vertx.irked.status.PayloadTooLarge
-
Create a 'Payload Too Large' HTTP Response with a custom message in the body.
- PayloadTooLarge(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PayloadTooLarge
-
Create a 'Payload Too Large' HTTP Response with a custom message in the body and an underlying cause.
- PayloadTooLarge(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PayloadTooLarge
-
Create a 'Payload Too Large' HTTP Response with an underlying cause.
- PaymentRequired - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Payment Required To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - PaymentRequired() - Constructor for exception tech.greenfield.vertx.irked.status.PaymentRequired
-
Create a 'Payment Required' HTTP Response.
- PaymentRequired(String) - Constructor for exception tech.greenfield.vertx.irked.status.PaymentRequired
-
Create a 'Payment Required' HTTP Response with a custom message in the body.
- PaymentRequired(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PaymentRequired
-
Create a 'Payment Required' HTTP Response with a custom message in the body and an underlying cause.
- PaymentRequired(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PaymentRequired
-
Create a 'Payment Required' HTTP Response with an underlying cause.
- peerCertificateChain() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- peerCertificates() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- PermanentRedirect - Exception in tech.greenfield.vertx.irked.helpers
- PermanentRedirect - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Permanent Redirect To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - PermanentRedirect() - Constructor for exception tech.greenfield.vertx.irked.status.PermanentRedirect
-
Create a 'Permanent Redirect' HTTP Response.
- PermanentRedirect(String) - Constructor for exception tech.greenfield.vertx.irked.helpers.PermanentRedirect
- PermanentRedirect(String) - Constructor for exception tech.greenfield.vertx.irked.status.PermanentRedirect
-
Create a 'Permanent Redirect' HTTP Response with a custom message in the body.
- PermanentRedirect(String, String) - Constructor for exception tech.greenfield.vertx.irked.helpers.PermanentRedirect
- PermanentRedirect(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PermanentRedirect
-
Create a 'Permanent Redirect' HTTP Response with a custom message in the body and an underlying cause.
- PermanentRedirect(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PermanentRedirect
-
Create a 'Permanent Redirect' HTTP Response with an underlying cause.
- pipe() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- pipeTo(WriteStream<Buffer>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- pipeTo(WriteStream<Buffer>, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- pongHandler(Handler<Buffer>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- post() - Method in class tech.greenfield.vertx.irked.Router
- post(String) - Method in class tech.greenfield.vertx.irked.Router
- Post - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle POST requests Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all POST requests.
- Posts - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@Post - postWithRegex(String) - Method in class tech.greenfield.vertx.irked.Router
- PreconditionFailed - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Precondition Failed To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - PreconditionFailed() - Constructor for exception tech.greenfield.vertx.irked.status.PreconditionFailed
-
Create a 'Precondition Failed' HTTP Response.
- PreconditionFailed(String) - Constructor for exception tech.greenfield.vertx.irked.status.PreconditionFailed
-
Create a 'Precondition Failed' HTTP Response with a custom message in the body.
- PreconditionFailed(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PreconditionFailed
-
Create a 'Precondition Failed' HTTP Response with a custom message in the body and an underlying cause.
- PreconditionFailed(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PreconditionFailed
-
Create a 'Precondition Failed' HTTP Response with an underlying cause.
- PreconditionRequired - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Precondition Required To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - PreconditionRequired() - Constructor for exception tech.greenfield.vertx.irked.status.PreconditionRequired
-
Create a 'Precondition Required' HTTP Response.
- PreconditionRequired(String) - Constructor for exception tech.greenfield.vertx.irked.status.PreconditionRequired
-
Create a 'Precondition Required' HTTP Response with a custom message in the body.
- PreconditionRequired(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PreconditionRequired
-
Create a 'Precondition Required' HTTP Response with a custom message in the body and an underlying cause.
- PreconditionRequired(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.PreconditionRequired
-
Create a 'Precondition Required' HTTP Response with an underlying cause.
- Processing - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Processing To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Processing() - Constructor for exception tech.greenfield.vertx.irked.status.Processing
-
Create a 'Processing' HTTP Response.
- Processing(String) - Constructor for exception tech.greenfield.vertx.irked.status.Processing
-
Create a 'Processing' HTTP Response with a custom message in the body.
- Processing(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Processing
-
Create a 'Processing' HTTP Response with a custom message in the body and an underlying cause.
- Processing(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Processing
-
Create a 'Processing' HTTP Response with an underlying cause.
- ProxyAuthenticationRequired - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Proxy Authentication Required To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - ProxyAuthenticationRequired() - Constructor for exception tech.greenfield.vertx.irked.status.ProxyAuthenticationRequired
-
Create a 'Proxy Authentication Required' HTTP Response.
- ProxyAuthenticationRequired(String) - Constructor for exception tech.greenfield.vertx.irked.status.ProxyAuthenticationRequired
-
Create a 'Proxy Authentication Required' HTTP Response with a custom message in the body.
- ProxyAuthenticationRequired(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.ProxyAuthenticationRequired
-
Create a 'Proxy Authentication Required' HTTP Response with a custom message in the body and an underlying cause.
- ProxyAuthenticationRequired(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.ProxyAuthenticationRequired
-
Create a 'Proxy Authentication Required' HTTP Response with an underlying cause.
- put() - Method in class tech.greenfield.vertx.irked.Router
- put(String) - Method in class tech.greenfield.vertx.irked.Router
- Put - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle PUT requests Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all PUT requests.
- putMetadata(String, Object) - Method in class tech.greenfield.vertx.irked.Router
- Puts - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@Put - putWithRegex(String) - Method in class tech.greenfield.vertx.irked.Router
Q
- qopIntegrityRequested() - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
-
Check if the sender requested a body integrity check
- query() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
R
- RangeNotSatisfiable - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Range Not Satisfiable To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - RangeNotSatisfiable() - Constructor for exception tech.greenfield.vertx.irked.status.RangeNotSatisfiable
-
Create a 'Range Not Satisfiable' HTTP Response.
- RangeNotSatisfiable(String) - Constructor for exception tech.greenfield.vertx.irked.status.RangeNotSatisfiable
-
Create a 'Range Not Satisfiable' HTTP Response with a custom message in the body.
- RangeNotSatisfiable(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.RangeNotSatisfiable
-
Create a 'Range Not Satisfiable' HTTP Response with a custom message in the body and an underlying cause.
- RangeNotSatisfiable(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.RangeNotSatisfiable
-
Create a 'Range Not Satisfiable' HTTP Response with an underlying cause.
- readFromBuffer(int, Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- Redirect - Exception in tech.greenfield.vertx.irked.helpers
- Redirect(String) - Constructor for exception tech.greenfield.vertx.irked.helpers.Redirect
-
Create an HTTP 302 Found response with the specified value for the
Locationheader - Redirect(String, String) - Constructor for exception tech.greenfield.vertx.irked.helpers.Redirect
-
Create an HTTP 302 Found response with the specified value for the
Locationheader - reject() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- reject(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- remoteAddress() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- remove() - Method in class tech.greenfield.vertx.irked.Controller
- remove(Controller) - Method in class tech.greenfield.vertx.irked.Router
- reply(Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Send back a binary reply to the other end
- reply(String) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Send back a text reply to the other end
- request() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
-
Retrieve the Irked
Requestobject that originated this WebSocket connection - request() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Retrieve the request that was upgraded to the WebSocket
- Request - Class in tech.greenfield.vertx.irked
-
Request handling wrapper which adds some useful routines for API writers.
- Request(RoutingContext) - Constructor for class tech.greenfield.vertx.irked.Request
-
Create a new request wrapper as a
RoutingContextDecoratoraround the specified parent routing context (what vertx-web calls "inner context"). - RequestHeaderFieldsTooLarge - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Request Header Fields Too Large To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - RequestHeaderFieldsTooLarge() - Constructor for exception tech.greenfield.vertx.irked.status.RequestHeaderFieldsTooLarge
-
Create a 'Request Header Fields Too Large' HTTP Response.
- RequestHeaderFieldsTooLarge(String) - Constructor for exception tech.greenfield.vertx.irked.status.RequestHeaderFieldsTooLarge
-
Create a 'Request Header Fields Too Large' HTTP Response with a custom message in the body.
- RequestHeaderFieldsTooLarge(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.RequestHeaderFieldsTooLarge
-
Create a 'Request Header Fields Too Large' HTTP Response with a custom message in the body and an underlying cause.
- RequestHeaderFieldsTooLarge(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.RequestHeaderFieldsTooLarge
-
Create a 'Request Header Fields Too Large' HTTP Response with an underlying cause.
- RequestTimeout - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Request Timeout To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - RequestTimeout() - Constructor for exception tech.greenfield.vertx.irked.status.RequestTimeout
-
Create a 'Request Timeout' HTTP Response.
- RequestTimeout(String) - Constructor for exception tech.greenfield.vertx.irked.status.RequestTimeout
-
Create a 'Request Timeout' HTTP Response with a custom message in the body.
- RequestTimeout(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.RequestTimeout
-
Create a 'Request Timeout' HTTP Response with a custom message in the body and an underlying cause.
- RequestTimeout(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.RequestTimeout
-
Create a 'Request Timeout' HTTP Response with an underlying cause.
- RequestWrapper - Class in tech.greenfield.vertx.irked
- RequestWrapper(Handler<? super Request>, Function<RoutingContext, Request>) - Constructor for class tech.greenfield.vertx.irked.RequestWrapper
- RequestWrapper(Function<RoutingContext, Request>) - Constructor for class tech.greenfield.vertx.irked.RequestWrapper
-
Helper c'tor for extensions that want to provide their own handling
- RequestWrapper(Controller) - Constructor for class tech.greenfield.vertx.irked.RequestWrapper
- RequestWrapper(Controller, Function<RoutingContext, Request>) - Constructor for class tech.greenfield.vertx.irked.RequestWrapper
- ResetContent - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Reset Content To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - ResetContent() - Constructor for exception tech.greenfield.vertx.irked.status.ResetContent
-
Create a 'Reset Content' HTTP Response.
- ResetContent(String) - Constructor for exception tech.greenfield.vertx.irked.status.ResetContent
-
Create a 'Reset Content' HTTP Response with a custom message in the body.
- ResetContent(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.ResetContent
-
Create a 'Reset Content' HTTP Response with a custom message in the body and an underlying cause.
- ResetContent(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.ResetContent
-
Create a 'Reset Content' HTTP Response with an underlying cause.
- resolveRequestContext(Request) - Method in class tech.greenfield.vertx.irked.RouteConfiguration
-
Try to resolve the handler requested routing context type by instantiating the requested type if needed.
- response(HttpError) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to generate response with the specified HTTP status
- resume() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- route() - Method in class tech.greenfield.vertx.irked.Router
- route(HttpMethod, String) - Method in class tech.greenfield.vertx.irked.Router
- route(String) - Method in class tech.greenfield.vertx.irked.Router
- RouteConfiguration - Class in tech.greenfield.vertx.irked
-
Internal implementation that handles parsing route annotations and setting up the router.
- RouteConfiguration(Controller, Router, Annotation[]) - Constructor for class tech.greenfield.vertx.irked.RouteConfiguration
- RouteConfiguration.RoutingContextImplException - Exception in tech.greenfield.vertx.irked
- RouteConfigurationField - Class in tech.greenfield.vertx.irked
-
An implementation of
RouteConfigurationused to configure Vert.x-web for Controller fields - RouteConfigurationField(Controller, Router, Field) - Constructor for class tech.greenfield.vertx.irked.RouteConfigurationField
- RouteConfigurationMethod - Class in tech.greenfield.vertx.irked
-
An implementation of
RouteConfigurationused to configure Vert.x-web for Controller methods - RouteConfigurationMethod(Controller, Router, Method) - Constructor for class tech.greenfield.vertx.irked.RouteConfigurationMethod
- RouteImplHelper - Class in io.vertx.ext.web.impl
-
A helper to access the results of the Vert.x route parser, for use in Irked support for dynamic runtime parameter configuration for controller methods, to circumvent Vert.x limits on access to the immutable RouteState.
- RouteImplHelper(Router, String) - Constructor for class io.vertx.ext.web.impl.RouteImplHelper
-
Parse the specified route path for the specified Irked router, by creating a standalone
RouteImpl - router - Variable in class tech.greenfield.vertx.irked.RouteConfiguration
- router() - Method in class tech.greenfield.vertx.irked.Irked
-
Create a new Irked router
- router(Vertx) - Static method in class tech.greenfield.vertx.irked.Irked
-
Create a new Irked router
- Router - Class in tech.greenfield.vertx.irked
- Router(Vertx) - Constructor for class tech.greenfield.vertx.irked.Router
- RouteSpec - Annotation Type in tech.greenfield.vertx.irked.annotations
- routeWithRegex(HttpMethod, String) - Method in class tech.greenfield.vertx.irked.Router
- routeWithRegex(String) - Method in class tech.greenfield.vertx.irked.Router
- RoutingContextImplException(Exception) - Constructor for exception tech.greenfield.vertx.irked.RouteConfiguration.RoutingContextImplException
- RoutingContextImplException(String) - Constructor for exception tech.greenfield.vertx.irked.RouteConfiguration.RoutingContextImplException
- routingContextResolver - Variable in class tech.greenfield.vertx.irked.RouteConfiguration
- routingContextType - Variable in class tech.greenfield.vertx.irked.RouteConfiguration
S
- scheme() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- SeeOther - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for See Other To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - SeeOther() - Constructor for exception tech.greenfield.vertx.irked.status.SeeOther
-
Create a 'See Other' HTTP Response.
- SeeOther(String) - Constructor for exception tech.greenfield.vertx.irked.status.SeeOther
-
Create a 'See Other' HTTP Response with a custom message in the body.
- SeeOther(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.SeeOther
-
Create a 'See Other' HTTP Response with a custom message in the body and an underlying cause.
- SeeOther(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.SeeOther
-
Create a 'See Other' HTTP Response with an underlying cause.
- send(Buffer) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with an HTTP OK and a application/octet-stream response
- send(JsonArray) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with an HTTP OK and a JSON response
- send(JsonObject) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with an HTTP OK and a JSON response
- send(Object) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with an HTTP OK and a JSON response
- send(String) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with an HTTP OK and a text/plain response
- send(HttpError) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with a non-OK HTTP response with default text
- sendContent(Buffer, HttpError, String) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with a custom response containing some data and the specified status line.
- sendContent(String) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with a custom response containing some text and the specifeid status line.
- sendContent(String, String) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with a custom response containing some text and the specifeid status line.
- sendContent(String, HttpError) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with a custom response containing some text and the specifeid status line.
- sendContent(String, HttpError, String) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with a custom response containing some text and the specified status line.
- sendError(HttpError) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with an HTTP error (non-200 OK) response.
- sendJSON(JsonArray) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with a success (200 OK) response containing a JSON body.
- sendJSON(JsonArray, HttpError) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with a custom response containing a JSON body and the specified status line.
- sendJSON(JsonObject) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with a success (200 OK) response containing a JSON body.
- sendJSON(JsonObject, HttpError) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with a custom response containing a JSON body and the specified status line.
- sendList(List<G>) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with an HTTP OK and an application/json response containing a list of
Json-encoded objects - sendObject(Object) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate a request processing with a success (200 OK) response containing a JSON object mapped from the specified POJO
- sendObject(Object, HttpError) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate a request processing with a custom response containing a JSON object mapped from the specified POJO and the specified status line.
- sendOrFail(AsyncResult<T>) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with either an HTTP OK (or whatever response status is currently set) using
Request.send(Object)if the result is a successful result, or handle the failure usingRequest.handleFailure(Throwable)if the result is of a failure. - sendStream(Stream<G>) - Method in class tech.greenfield.vertx.irked.Request
-
Helper method to terminate request processing with an HTTP OK and an application/json response containing a stream of
Json-encoded objects. - Service - Annotation Type in tech.greenfield.vertx.irked.annotations
- ServiceUnavailable - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Service Unavailable To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - ServiceUnavailable() - Constructor for exception tech.greenfield.vertx.irked.status.ServiceUnavailable
-
Create a 'Service Unavailable' HTTP Response.
- ServiceUnavailable(String) - Constructor for exception tech.greenfield.vertx.irked.status.ServiceUnavailable
-
Create a 'Service Unavailable' HTTP Response with a custom message in the body.
- ServiceUnavailable(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.ServiceUnavailable
-
Create a 'Service Unavailable' HTTP Response with a custom message in the body and an underlying cause.
- ServiceUnavailable(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.ServiceUnavailable
-
Create a 'Service Unavailable' HTTP Response with an underlying cause.
- setBuffer(int, Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setBuffer(int, Buffer, int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setByte(int, byte) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setBytes(int, byte[]) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setBytes(int, byte[], int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setBytes(int, ByteBuffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setDouble(int, double) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setFloat(int, float) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setHandshake(Future<Integer>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- setHandshake(Future<Integer>, Handler<AsyncResult<Integer>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- setInt(int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setIntLE(int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setJsonEncoding(boolean) - Method in class tech.greenfield.vertx.irked.Request
-
Set the built-in JSON encoding behavior of Request to use either the
Json.encodePrettily(Object)behavior instead of the standard compact encoding, or not. - setLong(int, long) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setLongLE(int, long) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setMedium(int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setMediumLE(int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setShort(int, short) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setShortLE(int, short) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setSpecificFailure(Throwable) - Method in class tech.greenfield.vertx.irked.Request
-
Store a specific exception type, supposedly that was found by am
@OnFail(exception)processor so it can be efficiently retrieved byRequest.findFailure(Class). - setStatusText(String) - Method in exception tech.greenfield.vertx.irked.HttpError
-
Update the current instance's status message with a non-default HTTP status message.
- setString(int, String) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setString(int, String, String) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Sets the bytes at position
posin the Buffer to the value ofstrencoded in encodingenc. - setUnsignedByte(int, short) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setUnsignedInt(int, long) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setUnsignedIntLE(int, long) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setUnsignedShort(int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setUnsignedShortLE(int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- setupRequestHandler(Controller...) - Method in class tech.greenfield.vertx.irked.Irked
-
Create an HTTP request handler, that can be used in
HttpServer.requestHandler(), with the provided set of APIs configured - setWriteQueueMaxSize(int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- SIMPLE - tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
- SimpleAuthrizationToken - Class in tech.greenfield.vertx.irked.auth
-
Implementation of a non-standard authentication scheme where a single opaque token is provided without an authencation scheme name
- SimpleAuthrizationToken() - Constructor for class tech.greenfield.vertx.irked.auth.SimpleAuthrizationToken
- SimpleAuthrizationToken(String) - Constructor for class tech.greenfield.vertx.irked.auth.SimpleAuthrizationToken
- slice() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Returns a slice of this buffer.
- slice(int, int) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Returns a slice of this buffer.
- socket() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Retrieve the WebSocket on which this message was received
- sslSession() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- start(Promise<Void>) - Method in class tech.greenfield.vertx.irked.example.App
- status() - Method in annotation type tech.greenfield.vertx.irked.annotations.OnFail
- StatusClassGenerator - Class in tech.greenfield.vertx.irked.generators
-
Generator for the HTTP exceptions, because I can't be bothered to write them manually.
- StatusClassGenerator() - Constructor for class tech.greenfield.vertx.irked.generators.StatusClassGenerator
- statusFromResponseCode() - Method in class tech.greenfield.vertx.irked.Request
- statusFromResponseCode(int) - Method in class tech.greenfield.vertx.irked.Request
- statusFromResponseCode(int, String) - Method in class tech.greenfield.vertx.irked.Request
- subProtocol() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- supports(String) - Method in class tech.greenfield.vertx.irked.auth.AuthorizationToken
-
Check whether an AuthorizationToken implementation supports the speciefied IANA HTTP Authentication Scheme Name
- supports(String) - Method in class tech.greenfield.vertx.irked.auth.BasicAuthorizationToken
- supports(String) - Method in class tech.greenfield.vertx.irked.auth.BearerAuthorizationToken
- supports(String) - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
- supports(String) - Method in class tech.greenfield.vertx.irked.auth.HOBAAuthorizationToken
- supports(String) - Method in class tech.greenfield.vertx.irked.auth.MutualAuthorizationToken
- supports(String) - Method in class tech.greenfield.vertx.irked.auth.NegotiateAuthorizationToken
- supports(String) - Method in class tech.greenfield.vertx.irked.auth.OAuthAuthorizationToken
- SwitchingProtocols - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Switching Protocols To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - SwitchingProtocols() - Constructor for exception tech.greenfield.vertx.irked.status.SwitchingProtocols
-
Create a 'Switching Protocols' HTTP Response.
- SwitchingProtocols(String) - Constructor for exception tech.greenfield.vertx.irked.status.SwitchingProtocols
-
Create a 'Switching Protocols' HTTP Response with a custom message in the body.
- SwitchingProtocols(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.SwitchingProtocols
-
Create a 'Switching Protocols' HTTP Response with a custom message in the body and an underlying cause.
- SwitchingProtocols(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.SwitchingProtocols
-
Create a 'Switching Protocols' HTTP Response with an underlying cause.
T
- tech.greenfield.vertx.irked - package tech.greenfield.vertx.irked
- tech.greenfield.vertx.irked.annotations - package tech.greenfield.vertx.irked.annotations
- tech.greenfield.vertx.irked.auth - package tech.greenfield.vertx.irked.auth
- tech.greenfield.vertx.irked.example - package tech.greenfield.vertx.irked.example
- tech.greenfield.vertx.irked.exceptions - package tech.greenfield.vertx.irked.exceptions
- tech.greenfield.vertx.irked.generators - package tech.greenfield.vertx.irked.generators
- tech.greenfield.vertx.irked.helpers - package tech.greenfield.vertx.irked.helpers
- tech.greenfield.vertx.irked.status - package tech.greenfield.vertx.irked.status
- tech.greenfield.vertx.irked.websocket - package tech.greenfield.vertx.irked.websocket
- TemporaryRedirect - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Temporary Redirect To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - TemporaryRedirect() - Constructor for exception tech.greenfield.vertx.irked.status.TemporaryRedirect
-
Create a 'Temporary Redirect' HTTP Response.
- TemporaryRedirect(String) - Constructor for exception tech.greenfield.vertx.irked.status.TemporaryRedirect
-
Create a 'Temporary Redirect' HTTP Response with a custom message in the body.
- TemporaryRedirect(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.TemporaryRedirect
-
Create a 'Temporary Redirect' HTTP Response with a custom message in the body and an underlying cause.
- TemporaryRedirect(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.TemporaryRedirect
-
Create a 'Temporary Redirect' HTTP Response with an underlying cause.
- textHandlerID() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- textMessageHandler(Handler<String>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- Timeout - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation that will add a
TimeoutHandlerto the configured route, causing that route to fail with a 503 server error if no response was written after the specified timeout. - toHex(byte[]) - Static method in class tech.greenfield.vertx.irked.auth.ParameterEncodedAuthorizationToken
- toHttpError(RoutingContext) - Static method in exception tech.greenfield.vertx.irked.HttpError
-
Helper method for OnFail handlers to create an appropriate HTTP error class for a failed
RoutingContext, by reading the failed status code or failure exception. - toHttpError(Throwable) - Static method in exception tech.greenfield.vertx.irked.HttpError
-
Helper method for OnFail handlers to locate a wrapped HttpError or create an InternalServerError from an unexpected exception (whether it is wrapped or not)
- toJsonArray() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- toJsonObject() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- TooManyRequests - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Too Many Requests To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - TooManyRequests() - Constructor for exception tech.greenfield.vertx.irked.status.TooManyRequests
-
Create a 'Too Many Requests' HTTP Response.
- TooManyRequests(String) - Constructor for exception tech.greenfield.vertx.irked.status.TooManyRequests
-
Create a 'Too Many Requests' HTTP Response with a custom message in the body.
- TooManyRequests(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.TooManyRequests
-
Create a 'Too Many Requests' HTTP Response with a custom message in the body and an underlying cause.
- TooManyRequests(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.TooManyRequests
-
Create a 'Too Many Requests' HTTP Response with an underlying cause.
- toString() - Method in class tech.greenfield.vertx.irked.auth.AuthorizationToken
- toString() - Method in class tech.greenfield.vertx.irked.Controller
- toString() - Method in exception tech.greenfield.vertx.irked.HttpError
- toString() - Method in class tech.greenfield.vertx.irked.RequestWrapper
- toString() - Method in class tech.greenfield.vertx.irked.RouteConfiguration
- toString() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- toString() - Method in class tech.greenfield.vertx.irked.WebSocketUpgradeRequestWrapper
- toString(String) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- toString(Charset) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
- trace() - Method in class tech.greenfield.vertx.irked.Router
- trace(String) - Method in class tech.greenfield.vertx.irked.Router
- traceWithRegex(String) - Method in class tech.greenfield.vertx.irked.Router
- trySetRoutingContextType(Class<?>) - Method in class tech.greenfield.vertx.irked.RouteConfiguration
U
- Unauthorized - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Unauthorized To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - Unauthorized() - Constructor for exception tech.greenfield.vertx.irked.status.Unauthorized
-
Create a 'Unauthorized' HTTP Response.
- Unauthorized(String) - Constructor for exception tech.greenfield.vertx.irked.status.Unauthorized
-
Create a 'Unauthorized' HTTP Response with a custom message in the body.
- Unauthorized(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Unauthorized
-
Create a 'Unauthorized' HTTP Response with a custom message in the body and an underlying cause.
- Unauthorized(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.Unauthorized
-
Create a 'Unauthorized' HTTP Response with an underlying cause.
- UnavailableForLegalReasons - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Unavailable For Legal Reasons To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - UnavailableForLegalReasons() - Constructor for exception tech.greenfield.vertx.irked.status.UnavailableForLegalReasons
-
Create a 'Unavailable For Legal Reasons' HTTP Response.
- UnavailableForLegalReasons(String) - Constructor for exception tech.greenfield.vertx.irked.status.UnavailableForLegalReasons
-
Create a 'Unavailable For Legal Reasons' HTTP Response with a custom message in the body.
- UnavailableForLegalReasons(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.UnavailableForLegalReasons
-
Create a 'Unavailable For Legal Reasons' HTTP Response with a custom message in the body and an underlying cause.
- UnavailableForLegalReasons(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.UnavailableForLegalReasons
-
Create a 'Unavailable For Legal Reasons' HTTP Response with an underlying cause.
- unchecked() - Method in exception tech.greenfield.vertx.irked.HttpError
-
Helper method to make it easier to throw HTTP statuses out of lambdas.
- uncheckedWrap() - Method in exception tech.greenfield.vertx.irked.HttpError
-
Alias to
HttpError.unchecked() - UnprocessableEntity - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Unprocessable Entity To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - UnprocessableEntity() - Constructor for exception tech.greenfield.vertx.irked.status.UnprocessableEntity
-
Create a 'Unprocessable Entity' HTTP Response.
- UnprocessableEntity(String) - Constructor for exception tech.greenfield.vertx.irked.status.UnprocessableEntity
-
Create a 'Unprocessable Entity' HTTP Response with a custom message in the body.
- UnprocessableEntity(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.UnprocessableEntity
-
Create a 'Unprocessable Entity' HTTP Response with a custom message in the body and an underlying cause.
- UnprocessableEntity(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.UnprocessableEntity
-
Create a 'Unprocessable Entity' HTTP Response with an underlying cause.
- UnsupportedMediaType - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Unsupported Media Type To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - UnsupportedMediaType() - Constructor for exception tech.greenfield.vertx.irked.status.UnsupportedMediaType
-
Create a 'Unsupported Media Type' HTTP Response.
- UnsupportedMediaType(String) - Constructor for exception tech.greenfield.vertx.irked.status.UnsupportedMediaType
-
Create a 'Unsupported Media Type' HTTP Response with a custom message in the body.
- UnsupportedMediaType(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.UnsupportedMediaType
-
Create a 'Unsupported Media Type' HTTP Response with a custom message in the body and an underlying cause.
- UnsupportedMediaType(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.UnsupportedMediaType
-
Create a 'Unsupported Media Type' HTTP Response with an underlying cause.
- unwrap(Throwable) - Static method in exception tech.greenfield.vertx.irked.HttpError
-
Unwrap
RuntimeExceptionwrappers around a logical exception (hopefully an instance of HttpError) - update(String, String) - Method in class tech.greenfield.vertx.irked.auth.AuthorizationToken
-
Update a service-loader loaded implementation with the actual details
- update(String, String) - Method in class tech.greenfield.vertx.irked.auth.BasicAuthorizationToken
- update(String, String) - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
- update(String, String) - Method in class tech.greenfield.vertx.irked.auth.ParameterEncodedAuthorizationToken
- UpgradeRequired - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Upgrade Required To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - UpgradeRequired() - Constructor for exception tech.greenfield.vertx.irked.status.UpgradeRequired
-
Create a 'Upgrade Required' HTTP Response.
- UpgradeRequired(String) - Constructor for exception tech.greenfield.vertx.irked.status.UpgradeRequired
-
Create a 'Upgrade Required' HTTP Response with a custom message in the body.
- UpgradeRequired(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.UpgradeRequired
-
Create a 'Upgrade Required' HTTP Response with a custom message in the body and an underlying cause.
- UpgradeRequired(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.UpgradeRequired
-
Create a 'Upgrade Required' HTTP Response with an underlying cause.
- uri() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- uriForAnnotations(Class<?>...) - Method in class tech.greenfield.vertx.irked.RouteConfiguration
- URITooLong - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for URI Too Long To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - URITooLong() - Constructor for exception tech.greenfield.vertx.irked.status.URITooLong
-
Create a 'URI Too Long' HTTP Response.
- URITooLong(String) - Constructor for exception tech.greenfield.vertx.irked.status.URITooLong
-
Create a 'URI Too Long' HTTP Response with a custom message in the body.
- URITooLong(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.URITooLong
-
Create a 'URI Too Long' HTTP Response with a custom message in the body and an underlying cause.
- URITooLong(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.URITooLong
-
Create a 'URI Too Long' HTTP Response with an underlying cause.
- USE_JSON_PRETTY_ENCODER - Static variable in class tech.greenfield.vertx.irked.Request
- UseProxy - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Use Proxy To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - UseProxy() - Constructor for exception tech.greenfield.vertx.irked.status.UseProxy
-
Create a 'Use Proxy' HTTP Response.
- UseProxy(String) - Constructor for exception tech.greenfield.vertx.irked.status.UseProxy
-
Create a 'Use Proxy' HTTP Response with a custom message in the body.
- UseProxy(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.UseProxy
-
Create a 'Use Proxy' HTTP Response with a custom message in the body and an underlying cause.
- UseProxy(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.UseProxy
-
Create a 'Use Proxy' HTTP Response with an underlying cause.
V
- validateResponse(String, Request) - Method in class tech.greenfield.vertx.irked.auth.DigestAuthorizationToken
-
Check if the response value provided in the token is valid considering the provided password, method and optional body.
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Connect
-
Path on which to accept the CONNECT request.
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.ConnectSpecs
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Consumes
-
Content-Type for the annotated route
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.ConsumesSpecs
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Delete
-
Path on which to accept the DELETE request
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Deletes
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Endpoint
-
Path on which to handle all HTTP requests
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Endpoints
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Get
-
Path on which to handle GET request
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Gets
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Head
-
Path on which to handle HEAD requests
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Heads
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Name
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.OnFailures
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Options
-
Path on which to handle OPTIONS requests
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Order
-
The order (ascending) that this handler will be called within all handlers that match the current requests.
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Patch
-
Path on which to accept the PATCH request
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Patches
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Post
-
Path on which to accept the POST request
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Posts
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Put
-
Path on which to accept the PUT request
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Puts
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.Timeout
-
Timeout in milliseconds to configure for the
TimeoutHandler - value() - Method in annotation type tech.greenfield.vertx.irked.annotations.WebSocket
-
Path on which to accept the websocket request
- value() - Method in annotation type tech.greenfield.vertx.irked.annotations.WebSockets
- valueOf(String) - Static method in enum tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum tech.greenfield.vertx.irked.auth.AuthorizationToken.TokenTypes
-
Returns an array containing the constants of this enum type, in the order they are declared.
- VariantAlsoNegotiates - Exception in tech.greenfield.vertx.irked.status
-
HTTP Status Code for Variant Also Negotiates To send this in the response, either pass an instance (with optional custom message) to
Request.send(HttpError)or throw it out of an Irked controller handler. - VariantAlsoNegotiates() - Constructor for exception tech.greenfield.vertx.irked.status.VariantAlsoNegotiates
-
Create a 'Variant Also Negotiates' HTTP Response.
- VariantAlsoNegotiates(String) - Constructor for exception tech.greenfield.vertx.irked.status.VariantAlsoNegotiates
-
Create a 'Variant Also Negotiates' HTTP Response with a custom message in the body.
- VariantAlsoNegotiates(String, Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.VariantAlsoNegotiates
-
Create a 'Variant Also Negotiates' HTTP Response with a custom message in the body and an underlying cause.
- VariantAlsoNegotiates(Throwable) - Constructor for exception tech.greenfield.vertx.irked.status.VariantAlsoNegotiates
-
Create a 'Variant Also Negotiates' HTTP Response with an underlying cause.
- vertx() - Method in class tech.greenfield.vertx.irked.Router
- vertxWebRouter() - Method in class tech.greenfield.vertx.irked.Router
W
- WebSocket - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Annotation to configure a route to handle websocket requests Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all websocket requests.
- WebSocketConnection - Class in tech.greenfield.vertx.irked.websocket
- WebSocketConnection(Request, Handler<? super WebSocketMessage>) - Constructor for class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- WebSocketMessage - Class in tech.greenfield.vertx.irked.websocket
- WebSocketMessage(Request, ServerWebSocket, Buffer) - Constructor for class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Contextual constructor that knows where the message came from
- WebSocketMessage(Request, ServerWebSocket, String) - Constructor for class tech.greenfield.vertx.irked.websocket.WebSocketMessage
-
Cheat constructor for text messages.
- WebSockets - Annotation Type in tech.greenfield.vertx.irked.annotations
-
Repeatable container for
@WebSocket - WebSocketUpgradeRequestWrapper - Class in tech.greenfield.vertx.irked
- WebSocketUpgradeRequestWrapper(Handler<? super WebSocketMessage>, RequestWrapper) - Constructor for class tech.greenfield.vertx.irked.WebSocketUpgradeRequestWrapper
- with(Controller) - Method in class tech.greenfield.vertx.irked.Router
- with(Controller, String) - Method in class tech.greenfield.vertx.irked.Router
- wrapper - Variable in class tech.greenfield.vertx.irked.RequestWrapper
- write(Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- write(Buffer, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeBinaryMessage(Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeBinaryMessage(Buffer, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeFinalBinaryFrame(Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeFinalBinaryFrame(Buffer, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeFinalTextFrame(String) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeFinalTextFrame(String, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeFrame(WebSocketFrame) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeFrame(WebSocketFrame, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writePing(Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writePing(Buffer, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writePong(Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writePong(Buffer, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeQueueFull() - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeTextMessage(String) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeTextMessage(String, Handler<AsyncResult<Void>>) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketConnection
- writeToBuffer(Buffer) - Method in class tech.greenfield.vertx.irked.websocket.WebSocketMessage
All Classes All Packages