costin 02/04/04 21:36:32 Modified: coyote/src/java/org/apache/coyote ActionCode.java Log: Added an action code for 'getAttribute' We need to be able to get various expensive attributes from the lower layer - like SSL info. Unfortunately the current Action can't return values - if we move to the new TcHandler it'll be much easier. Remy, am I missing something ? Revision Changes Path 1.4 +4 -0 jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/ActionCode.java Index: ActionCode.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/ActionCode.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ActionCode.java 15 Mar 2002 05:31:50 -0000 1.3 +++ ActionCode.java 5 Apr 2002 05:36:32 -0000 1.4 @@ -90,6 +90,10 @@ public static final ActionCode ACTION_STOP = new ActionCode(); + /** Compute request attribute + */ + public static final ActionCode ACTION_REQ_ATTRIBUTE = new ActionCode(); + // ----------------------------------------------------------- Constructors
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>