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

org.apache.struts2.util.VelocityStrutsUtil Maven / Gradle / Ivy

Go to download

This module create facades for all the APIs (classes, interfaces and annotations) that are use in the test code. The objective is to avoid the needed to download all the framework supported by the static analyzer.

The newest version!
package org.apache.struts2.util;

import com.opensymphony.xwork2.util.ValueStack;
import org.apache.velocity.app.VelocityEngine;
import org.apache.velocity.context.Context;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.CharArrayWriter;
import java.io.IOException;

public class VelocityStrutsUtil extends StrutsUtil {

    public VelocityStrutsUtil(VelocityEngine engine, Context ctx, ValueStack stack, HttpServletRequest request, HttpServletResponse response) {
        super(stack, request, response);
    }

    public String evaluate(String expression) throws IOException /*, ResourceNotFoundException, MethodInvocationException, ParseErrorException */ {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy