org.http4k.multipart.StreamingPart.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-multipart Show documentation
Show all versions of http4k-multipart Show documentation
Http4k multipart form support
package org.http4k.multipart
import java.io.InputStream
internal class StreamingPart(
fieldName: String,
formField: Boolean,
contentType: String?,
fileName: String?,
val inputStream: InputStream,
headers: Map
) : PartMetaData(fieldName, formField, contentType, fileName, headers) {
val contentsAsString: String
get() = inputStream.use { it.reader().readText() }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy