de.dani09.http.HttpResponseDummy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dani-http Show documentation
Show all versions of dani-http Show documentation
A small Http Library with an Builder like pattern
package de.dani09.http
/**
* This is a ResponseDummy that has no response, no headers
* and the responseCode you will pass into the Constructor.
* This class is only intended for internal use!
*/
internal class HttpResponseDummy @JvmOverloads constructor(responseCode: Int = 0) : HttpResponse(responseCode, byteArrayOf(), mapOf())
© 2015 - 2025 Weber Informatics LLC | Privacy Policy