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

com.jdroid.java.http.MultipartHttpService.kt Maven / Gradle / Ivy

The newest version!
package com.jdroid.java.http

import com.jdroid.java.http.post.BodyEnclosingHttpService
import java.io.ByteArrayInputStream

interface MultipartHttpService : BodyEnclosingHttpService {

    fun addPart(name: String, inputStream: ByteArrayInputStream, mimeType: String, filename: String)

    fun addPart(name: String, value: Any, mimeType: String)

    fun addJsonPart(name: String, value: Any)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy