1 20 package org.apache.mina.common; 21 22 38 public interface IoFilterChainBuilder { 39 42 IoFilterChainBuilder NOOP = new IoFilterChainBuilder() { 43 public void buildFilterChain(IoFilterChain chain) throws Exception { 44 } 45 46 public String toString() { 47 return "NOOP"; 48 } 49 }; 50 51 54 void buildFilterChain(IoFilterChain chain) throws Exception ; 55 } 56 | Popular Tags |