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.
The default implementation for AllQuery. It returns all rows in the table.
Establishes a connection to the database specified in the config, and maintains a connection pool to that database.
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.
The default implementation for DeleteQuery. It deletes a single row in the table by id.
Auto deserialize json to the type given.
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.
The default implementation for FindQuery. It returns a single row in the table by id.
Gets and stores additional information about parameters so that the additional information is easily accessible
when needed.
Enum representing http status codes.
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.
The default implementation for InsertQuery. It inserts a single row into the table.
(extensions in package dev.fuelyour.vertxkuickstartcore.tools)
(extensions in package dev.fuelyour.vertxkuickstartcore.tools)
Verifies authentication according to information specified in the swagger doc.
(extensions in package dev.fuelyour.vertxkuickstartcore.tools)
Base exception class to allow the return of nicely formatted error messages to the callers of the web service api.
Auto serialize objects to json
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.
Authenticate requests and route to appropriate controllers and functions
based off of specification in the swagger doc.
Builds out service handlers for routing to the controllers
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.
The default implementation for UpdateQuery. It updates a single row in the table by id.
(extensions in package dev.fuelyour.vertxkuickstartcore.config)
Base exception for vertx-quickstart-core libraries to inform users of the core libraries of misuse of the core
libraries.