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

org.zodiac.autoconfigure.web.ReactiveMultipartConfigProperties Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.autoconfigure.web;

import org.springframework.util.unit.DataSize;
import org.zodiac.core.web.reactive.ReactiveMultipartConfigInfo;

public class ReactiveMultipartConfigProperties extends ReactiveMultipartConfigInfo {

    public ReactiveMultipartConfigProperties() {
    }

    @Override
    public ReactiveMultipartConfigProperties setEnabled(boolean enabled) {
        super.setEnabled(enabled);
        return this;
    }

    @Override
    public ReactiveMultipartConfigProperties setLocation(String location) {
        super.setLocation(location);
        return this;
    }

    @Override
    public ReactiveMultipartConfigProperties setMaxFileSize(DataSize maxFileSize) {
        super.setMaxFileSize(maxFileSize);
        return this;
    }

    @Override
    public ReactiveMultipartConfigProperties setMaxRequestSize(DataSize maxRequestSize) {
        super.setMaxRequestSize(maxRequestSize);
        return this;
    }

    @Override
    public ReactiveMultipartConfigProperties setFileSizeThreshold(DataSize fileSizeThreshold) {
        super.setFileSizeThreshold(fileSizeThreshold);
        return this;
    }

    @Override
    public ReactiveMultipartConfigProperties setResolveLazily(boolean resolveLazily) {
        super.setResolveLazily(resolveLazily);
        return this;
    }

    @Override
    public ReactiveMultipartConfigProperties setMaxMemorySizePerPart(DataSize maxMemorySizePerPart) {
        super.setMaxMemorySizePerPart(maxMemorySizePerPart);
        return this;
    }

    @Override
    public ReactiveMultipartConfigProperties setEnableRequestLogging(boolean enableRequestLogging) {
        super.setEnableRequestLogging(enableRequestLogging);
        return this;
    }

    @Override
    public ReactiveMultipartConfigProperties setMaxParts(int maxParts) {
        super.setMaxParts(maxParts);
        return this;
    }

    @Override
    public ReactiveMultipartConfigProperties setMaxDiskUsagePerPart(DataSize maxDiskUsagePerPart) {
        super.setMaxDiskUsagePerPart(maxDiskUsagePerPart);
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy