All Types

dev.fuelyour.vertxkuickstartcore.repositories.AllQuery

Simple mixin query for selecting all from a given table. The default implementation can be used with a call to the impl function, or a different implementation may be provided.

dev.fuelyour.vertxkuickstartcore.repositories.AllQueryImpl

The default implementation for AllQuery. It returns all rows in the table.

dev.fuelyour.vertxkuickstartcore.exceptions.AuthorizationException
dev.fuelyour.vertxkuickstartcore.exceptions.BadRequestException
dev.fuelyour.vertxkuickstartcore.exceptions.ConflictException
dev.fuelyour.vertxkuickstartcore.tools.ControllerSupplier
dev.fuelyour.vertxkuickstartcore.tools.DatabaseAccess

Establishes a connection to the database specified in the config, and maintains a connection pool to that database.

dev.fuelyour.vertxkuickstartcore.repositories.DeleteQuery

Simple mixin query for deleting a single ron from a given table based on id. The default implementation can be used with a call to the impl function, or a different implementation may be provided.

dev.fuelyour.vertxkuickstartcore.repositories.DeleteQueryImpl

The default implementation for DeleteQuery. It deletes a single row in the table by id.

dev.fuelyour.vertxkuickstartcore.tools.Deserializer

Auto deserialize json to the type given.

dev.fuelyour.vertxkuickstartcore.tools.DeserializerImpl
dev.fuelyour.vertxkuickstartcore.tools.Field
dev.fuelyour.vertxkuickstartcore.repositories.FindQuery

Simple mixin query for selecting a single row from a given table by id. The default implementation can be used with a call to the impl function, or a different implementation may be provided.

dev.fuelyour.vertxkuickstartcore.repositories.FindQueryImpl

The default implementation for FindQuery. It returns a single row in the table by id.

dev.fuelyour.vertxkuickstartcore.exceptions.ForbiddenException
dev.fuelyour.vertxkuickstartcore.tools.FullParameter

Gets and stores additional information about parameters so that the additional information is easily accessible when needed.

dev.fuelyour.vertxkuickstartcore.tools.FullType
dev.fuelyour.vertxkuickstartcore.exceptions.HTTPStatusCode

Enum representing http status codes.

dev.fuelyour.vertxkuickstartcore.repositories.InsertQuery

Simple mixin query for inserting a single row into a given table. The default implementation can be used with a call to the impl function, or a different implementation may be provided.

dev.fuelyour.vertxkuickstartcore.repositories.InsertQueryImpl

The default implementation for InsertQuery. It inserts a single row into the table.

(extensions in package dev.fuelyour.vertxkuickstartcore.tools)
io.vertx.core.json.JsonArray
(extensions in package dev.fuelyour.vertxkuickstartcore.tools)
io.vertx.core.json.JsonObject
dev.fuelyour.vertxkuickstartcore.tools.JwtAuthHelper

Verifies authentication according to information specified in the swagger doc.

(extensions in package dev.fuelyour.vertxkuickstartcore.tools)
kotlin.reflect.KFunction
dev.fuelyour.vertxkuickstartcore.exceptions.ModelNotFoundException
dev.fuelyour.vertxkuickstartcore.tools.PositionalSql
dev.fuelyour.vertxkuickstartcore.tools.PreparedPositionalSql
dev.fuelyour.vertxkuickstartcore.exceptions.ResponseCodeException

Base exception class to allow the return of nicely formatted error messages to the callers of the web service api.

dev.fuelyour.vertxkuickstartcore.tools.Roles
dev.fuelyour.vertxkuickstartcore.tools.RouteHandlers
dev.fuelyour.vertxkuickstartcore.tools.Serializer

Auto serialize objects to json

dev.fuelyour.vertxkuickstartcore.tools.SerializerImpl
dev.fuelyour.vertxkuickstartcore.exceptions.ServiceException
dev.fuelyour.vertxkuickstartcore.tools.SwaggerAuthHandler
dev.fuelyour.vertxkuickstartcore.tools.SwaggerMerger

Merge multiple swagger documents into one. This allows swagger documents to be broken down into manageable pieces, and merged back together for final documentation generation.

dev.fuelyour.vertxkuickstartcore.tools.SwaggerRoute
dev.fuelyour.vertxkuickstartcore.tools.SwaggerRouteBuilder
dev.fuelyour.vertxkuickstartcore.tools.SwaggerRouter

Authenticate requests and route to appropriate controllers and functions based off of specification in the swagger doc.

dev.fuelyour.vertxkuickstartcore.tools.SwaggerServiceHandler

Builds out service handlers for routing to the controllers

dev.fuelyour.vertxkuickstartcore.tools.SwaggerTraverser
dev.fuelyour.vertxkuickstartcore.annotations.Timeout
dev.fuelyour.vertxkuickstartcore.exceptions.TimeoutException
dev.fuelyour.vertxkuickstartcore.exceptions.TooManyRequestsException
dev.fuelyour.vertxkuickstartcore.tools.TypeWrapper
dev.fuelyour.vertxkuickstartcore.exceptions.UnavailableException
dev.fuelyour.vertxkuickstartcore.repositories.UpdateQuery

Simple mixin query for updating a single from a given table based on id. The default implementation can be used with a call to the impl function, or a different implementation may be provided.

dev.fuelyour.vertxkuickstartcore.repositories.UpdateQueryImpl

The default implementation for UpdateQuery. It updates a single row in the table by id.

(extensions in package dev.fuelyour.vertxkuickstartcore.config)
io.vertx.core.Vertx
dev.fuelyour.vertxkuickstartcore.exceptions.VertxKuickstartException

Base exception for vertx-quickstart-core libraries to inform users of the core libraries of misuse of the core libraries.