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

com.dtflys.forest.http.body.MultipartRequestBodyBuilder Maven / Gradle / Ivy

There is a newer version: 1.6.1
Show newest version
package com.dtflys.forest.http.body;

import org.springframework.web.multipart.MultipartFile;

public class MultipartRequestBodyBuilder extends RequestBodyBuilder {

    @Override
    public MultipartRequestBody build(MultipartFile data, String defaultValue) {
        if (data == null) {
            return null;
        }
        MultipartRequestBody body = new MultipartRequestBody(data);
        body.setDefaultValue(defaultValue);
        return body;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy