Package com.ramforth.webserver.http.resources

Examples of com.ramforth.webserver.http.resources.HttpFileResourceProvider


    private final String[] extensions;
    private final Pattern extensionsPattern;
   
    public HttpCgiModule(String pathToCgiExecutable, String... extensions) {
        super();
        this.resourceProvider = new HttpFileResourceProvider();

        this.pathToCgiExecutable = pathToCgiExecutable;
        this.extensions = extensions;
        this.extensionsPattern = constructRegexPatternFromExtensions(extensions);
    }
View Full Code Here


    private static final Logger LOGGER = LoggerFactory.getLogger(HttpFileModule.class);

    public HttpFileModule() {
        super();
        this.resourceProvider = new HttpFileResourceProvider();
    }
View Full Code Here

    private static final Logger LOGGER = LoggerFactory.getLogger(HttpUrlModule.class);

    public HttpUrlModule() {
        super();
        this.resourceProvider = new HttpFileResourceProvider();
    }
View Full Code Here

TOP

Related Classes of com.ramforth.webserver.http.resources.HttpFileResourceProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.