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

net.sf.jsptest.compiler.jsp20.JspExecutionImpl Maven / Gradle / Ivy

package net.sf.jsptest.compiler.jsp20;

import net.sf.jsptest.compiler.api.JspExecution;

/**
 * @author Lasse Koskela
 */
public class JspExecutionImpl implements JspExecution {

    private final String renderedOutput;

    public JspExecutionImpl(String output) {
        this.renderedOutput = output;
    }

    public String getRenderedResponse() {
        return renderedOutput;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy