vertx-kuickstart-core / dev.fuelyour.vertxkuickstartcore.tools / Serializer

Serializer

interface Serializer

Auto serialize objects to json

Functions

serialize

abstract fun List<*>.serialize(): JsonArray
abstract fun <T : Any> T.serialize(): JsonObject
abstract fun Map<*, *>.serialize(): JsonObject

Inheritors

InsertQueryImpl

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

class InsertQueryImpl<T : Any, R : Any> : InsertQuery<T, R>, Serializer, Deserializer

SerializerImpl

class SerializerImpl : Serializer

SwaggerServiceHandler

Builds out service handlers for routing to the controllers

class SwaggerServiceHandler : Serializer, Deserializer

UpdateQueryImpl

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

class UpdateQueryImpl<T : Any, R : Any> : UpdateQuery<T, R>, Serializer, Deserializer