1 16 package org.apache.commons.chain.impl; 17 18 19 import org.apache.commons.chain.Context; 20 import org.apache.commons.chain.Filter; 21 22 23 30 31 public class DelegatingFilter extends NonDelegatingFilter { 32 33 34 36 37 public DelegatingFilter() { 38 this("", ""); 39 } 40 41 42 public DelegatingFilter(String id1, String id2) { 44 super(id1, id2); 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 |