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

com.mockrunner.mock.web.MockVariableResolver Maven / Gradle / Ivy

package com.mockrunner.mock.web;

import java.util.HashMap;
import java.util.Map;

import javax.servlet.jsp.el.ELException;
import javax.servlet.jsp.el.VariableResolver;

/**
 * Mock implementation of VariableResolver.
 * This implementation cannot be used for real EL
 * expressions. Real EL expression support is only
 * available for the Unified Expression Language API
 * using the {@link JasperJspFactory}.
 */
public class MockVariableResolver implements VariableResolver
{
    private Map variables = new HashMap();
    
    /**
     * Adds a variable that resolves to the specified object.
     * @param name the variable name
     * @param value the variable value
     */
    public void addVariable(String name, Object value)
    {
        variables.put(name, value);
    }
    
    /**
     * Clears all variables.
     */
    public void clearVariables()
    {
        variables.clear();
    }

    public Object resolveVariable(String name) throws ELException
    {
        return variables.get(name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy