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

io.keploy.utils.MultipartContent Maven / Gradle / Ivy

There is a newer version: 1.4.7
Show newest version
package io.keploy.utils;

public class MultipartContent {

    private final String fileName;
    private final byte[] body;

    public MultipartContent(String fileName, byte[] body) {
        this.fileName = fileName;
        this.body = body;
    }

    public String getFileName() {
        return fileName;
    }

    public byte[] getBody() {
        return body;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy