jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/client/ClientPipelineHook.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 com.sun.xml.internal.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.internal.ws.api.pipe.Pipe}
    62      *      {@link com.sun.xml.internal.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.internal.ws.api.pipe.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 createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    70     public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    71         return tail;
    71         return tail;