interface Serializer
Auto serialize objects to json
serialize |
abstract fun List<*>.serialize(): JsonArrayabstract fun <T : Any> T.serialize(): JsonObjectabstract fun Map<*, *>.serialize(): JsonObject |
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 |