package com.my.lock;

import net.sourceforge.stripes.action.ActionBean;
import net.sourceforge.stripes.action.ActionBeanContext;

/**
 * Simple ActionBean implementation that all ActionBeans in the My Web App
 * example will extend.
 * 
 * @author Tim Fennell
 */
public abstract class MyActionBean implements ActionBean
{
	private MyActionBeanContext context;

	public void setContext(ActionBeanContext context)
	{
		this.context = (MyActionBeanContext) context;
	}

	/** Gets the ActionBeanContext set by Stripes during initialization. */
	public MyActionBeanContext getContext()
	{
		return this.context;
	}


}
