View | Details | Raw Unified | Return to bug 47518
Collapse All | Expand All

(-)java/org/apache/catalina/Valve.java (-3 / +3 lines)
Lines 94-100 Link Here
94
     *     and pass them on.
94
     *     and pass them on.
95
     * <li>If the corresponding Response was not generated (and control was not
95
     * <li>If the corresponding Response was not generated (and control was not
96
     *     returned, call the next Valve in the pipeline (if there is one) by
96
     *     returned, call the next Valve in the pipeline (if there is one) by
97
     *     executing <code>context.invokeNext()</code>.
97
     *     executing <code>getNext().invoke()</code>.
98
     * <li>Examine, but not modify, the properties of the resulting Response
98
     * <li>Examine, but not modify, the properties of the resulting Response
99
     *     (which was created by a subsequently invoked Valve or Container).
99
     *     (which was created by a subsequently invoked Valve or Container).
100
     * </ul>
100
     * </ul>
Lines 112-120 Link Here
112
     *     unless it is completely generating the response, or wrapping the
112
     *     unless it is completely generating the response, or wrapping the
113
     *     request before passing it on.
113
     *     request before passing it on.
114
     * <li>Modify the HTTP headers included with the Response after the
114
     * <li>Modify the HTTP headers included with the Response after the
115
     *     <code>invokeNext()</code> method has returned.
115
     *     <code>getNext().invoke()</code> method has returned.
116
     * <li>Perform any actions on the output stream associated with the
116
     * <li>Perform any actions on the output stream associated with the
117
     *     specified Response after the <code>invokeNext()</code> method has
117
     *     specified Response after the <code>getNext().invoke()</code> method has
118
     *     returned.
118
     *     returned.
119
     * </ul>
119
     * </ul>
120
     *
120
     *

Return to bug 47518