1 16 package org.apache.commons.chain.impl; 17 18 19 import org.apache.commons.chain.Command; 20 import org.apache.commons.chain.Context; 21 22 23 30 31 public class DelegatingCommand extends NonDelegatingCommand { 32 33 34 36 37 public DelegatingCommand() { 38 this(""); 39 } 40 41 42 public DelegatingCommand(String id) { 44 super(id); 45 } 46 47 48 50 51 public boolean execute(Context context) throws Exception { 53 54 super.execute(context); 55 return (false); 56 57 } 58 59 60 } 61 | Popular Tags |