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

io.undertow.jsp.JspFileWrapper Maven / Gradle / Ivy

The newest version!
package io.undertow.jsp;

import io.undertow.server.HttpHandler;
import io.undertow.server.HandlerWrapper;

/**
 * @author Stuart Douglas
 */
public class JspFileWrapper implements HandlerWrapper {

    private final String jspFile;

    public JspFileWrapper(final String jspFile) {
        this.jspFile = jspFile;
    }

    @Override
    public HttpHandler wrap(final HttpHandler handler) {
        return new JspFileHandler(jspFile, handler);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy