org.apache.commons.chain.impl
public class: DelegatingCommand [javadoc |
source]
java.lang.Object
org.apache.commons.chain.impl.NonDelegatingCommand
org.apache.commons.chain.impl.DelegatingCommand
All Implemented Interfaces:
Command
Implementation of Command that logs its identifier and
and delegates to the rest of the chain.
- author:
Craig - R. McClanahan
- version:
$ - Revision: 155403 $ $Date: 2005-02-26 12:52:46 +0000 (Sat, 26 Feb 2005) $
| Method from org.apache.commons.chain.impl.DelegatingCommand Summary: |
|---|
|
execute |
| Method from org.apache.commons.chain.impl.DelegatingCommand Detail: |
public boolean execute(Context context) throws Exception {
super.execute(context);
return (false);
}
|