All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hxl.miniapi.http.file.FilePart.kt Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.hxl.miniapi.http.file

import sun.security.util.Length
import java.io.ByteArrayInputStream

class FilePart {
    lateinit var name: String
    lateinit var contentType: String
    lateinit var inputStream: ByteArrayInputStream
    var contentTypeLength: Long = -1
    override fun toString(): String {
        return "FilePart(name='$name', contentType='$contentType', contentTypeLength=$contentTypeLength)"
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy