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

com.firefly.server.http2.router.handler.file.StaticFileConfiguration Maven / Gradle / Ivy

There is a newer version: 5.0.0-dev6
Show newest version
package com.firefly.server.http2.router.handler.file;

/**
 * @author Pengtao Qiu
 */
public class StaticFileConfiguration {

    private String rootPath;
    private int maxRangePart = 8;

    public String getRootPath() {
        return rootPath;
    }

    public void setRootPath(String rootPath) {
        this.rootPath = rootPath;
    }

    public int getMaxRangePart() {
        return maxRangePart;
    }

    public void setMaxRangePart(int maxRangePart) {
        this.maxRangePart = maxRangePart;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy