1 58 59 package org.apache.ecs.filter; 60 61 import org.apache.ecs.*; 62 63 64 68 69 public class NullFilter implements Filter { 70 71 public Filter addAttribute(String name, Object attribute) { 72 return this; 73 } 74 75 public Filter removeAttribute(String name) { 76 return this; 77 } 78 79 public boolean hasAttribute(String name) { 80 return false; 81 } 82 83 public String process(String to_process) { 84 return to_process; 85 } 86 87 public String getInfo() { 88 return "info"; 89 } 90 91 } 92 | Popular Tags |