jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/ServerPipelineHook.java
changeset 32795 5a5710ee05a0
parent 25871 b80b84e87032
equal deleted inserted replaced
32712:f61a63b7d1e5 32795:5a5710ee05a0
    61      *      wishes to add new pipes, it should do so by extending
    61      *      wishes to add new pipes, it should do so by extending
    62      *      {@link AbstractFilterPipeImpl} and making sure that this {@link Pipe}
    62      *      {@link AbstractFilterPipeImpl} and making sure that this {@link Pipe}
    63      *      eventually processes messages.
    63      *      eventually processes messages.
    64      *
    64      *
    65      * @return
    65      * @return
    66      *      The default implementation just returns <tt>tail</tt>, which means
    66      *      The default implementation just returns {@code tail}, which means
    67      *      no additional pipe is inserted. If the implementation adds
    67      *      no additional pipe is inserted. If the implementation adds
    68      *      new pipes, return the new head pipe.
    68      *      new pipes, return the new head pipe.
    69      */
    69      */
    70     public @NotNull Pipe createMonitoringPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    70     public @NotNull Pipe createMonitoringPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    71         return tail;
    71         return tail;
    87      *      wishes to add new pipes, it should do so by extending
    87      *      wishes to add new pipes, it should do so by extending
    88      *      {@link AbstractFilterPipeImpl} and making sure that this {@link Pipe}
    88      *      {@link AbstractFilterPipeImpl} and making sure that this {@link Pipe}
    89      *      eventually processes messages.
    89      *      eventually processes messages.
    90      *
    90      *
    91      * @return
    91      * @return
    92      *      The default implementation just returns <tt>tail</tt>, which means
    92      *      The default implementation just returns {@code tail}, which means
    93      *      no additional pipe is inserted. If the implementation adds
    93      *      no additional pipe is inserted. If the implementation adds
    94      *      new pipes, return the new head pipe.
    94      *      new pipes, return the new head pipe.
    95      */
    95      */
    96     public @NotNull Pipe createSecurityPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    96     public @NotNull Pipe createSecurityPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    97         return tail;
    97         return tail;