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

com.tapstream.sdk.http.ByteArrayRequestBody Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package com.tapstream.sdk.http;


public class ByteArrayRequestBody implements RequestBody{

    private final byte[] body;

    public ByteArrayRequestBody() {
        this(new byte[0]);
    }

    public ByteArrayRequestBody(byte[] body){
        this.body = body;
    }

    @Override
    public byte[] toBytes() {
        return body;
    }

    @Override
    public String contentType() {
        return "byte array";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy