Author: dain Date: Sat Feb 19 14:02:59 2005 New Revision: 154455 URL: http://svn.apache.org/viewcvs?view=rev&rev=154455 Log: Added a do nothing filter method as required by the new activeio
Modified: geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/network/protocol/SubjectCarryingChannel.java Modified: geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/network/protocol/SubjectCarryingChannel.java URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/network/protocol/SubjectCarryingChannel.java?view=diff&r1=154454&r2=154455 ============================================================================== --- geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/network/protocol/SubjectCarryingChannel.java (original) +++ geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/network/protocol/SubjectCarryingChannel.java Sat Feb 19 14:02:59 2005 @@ -121,6 +121,9 @@ } return super.narrow(target); } + public Packet filter(Packet packet) { + return packet; + } }); } } catch (IOException e) {