com.hexagonkt.serialization.jackson.json.JsonFormat.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serialization_jackson_json Show documentation
Show all versions of serialization_jackson_json Show documentation
Hexagon JSON serialization format (using Jackson).
package com.hexagonkt.serialization.jackson.json
import com.hexagonkt.core.media.APPLICATION_JSON
import com.hexagonkt.core.media.MediaType
import com.hexagonkt.serialization.jackson.JacksonTextFormat
open class JsonFormat(prettyPrint: Boolean = true) : JacksonTextFormat(prettyPrint = prettyPrint) {
override val mediaType: MediaType = APPLICATION_JSON
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy