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

org.nanocontainer.nanowar.webwork.ActionContextScopeObjectReference Maven / Gradle / Ivy

The newest version!
package org.nanocontainer.nanowar.webwork;

import org.picocontainer.defaults.ObjectReference;
import webwork.action.ActionContext;

/**
 * References an object that lives as an attribute of the
 * webwork action context
 *
 * @author Konstantin Pribluda
 */
public class ActionContextScopeObjectReference implements ObjectReference {

    private String key;

    public ActionContextScopeObjectReference(String key) {
        this.key = key;
    }

    public void set(Object item) {
        ActionContext.getContext().put(key, item);
    }

    public Object get() {
        return ActionContext.getContext().get(key);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy