org.apache.struts.chain.commands
abstract public class: ActionCommandBase [javadoc |
source]
java.lang.Object
org.apache.struts.chain.commands.ActionCommandBase
All Implemented Interfaces:
ActionCommand
Simple abstract class which avoids frequent casting to
ActionContext in commands explicitly intended for use with
that class.
| Method from org.apache.struts.chain.commands.ActionCommandBase Summary: |
|---|
|
execute, execute |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.struts.chain.commands.ActionCommandBase Detail: |
abstract public boolean execute(ActionContext actionContext) throws Exception
|
public boolean execute(Context context) throws Exception {
if (LOG.isDebugEnabled()) {
LOG.debug("Executing " + getClass().getName());
}
return execute((ActionContext) context);
}
|