< prev index next >

src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/ServerPipelineHook.java

Print this page

        

*** 61,71 **** * wishes to add new pipes, it should do so by extending * {@link AbstractFilterPipeImpl} and making sure that this {@link Pipe} * eventually processes messages. * * @return ! * The default implementation just returns <tt>tail</tt>, which means * no additional pipe is inserted. If the implementation adds * new pipes, return the new head pipe. */ public @NotNull Pipe createMonitoringPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) { return tail; --- 61,71 ---- * wishes to add new pipes, it should do so by extending * {@link AbstractFilterPipeImpl} and making sure that this {@link Pipe} * eventually processes messages. * * @return ! * The default implementation just returns {@code tail}, which means * no additional pipe is inserted. If the implementation adds * new pipes, return the new head pipe. */ public @NotNull Pipe createMonitoringPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) { return tail;
*** 87,97 **** * wishes to add new pipes, it should do so by extending * {@link AbstractFilterPipeImpl} and making sure that this {@link Pipe} * eventually processes messages. * * @return ! * The default implementation just returns <tt>tail</tt>, which means * no additional pipe is inserted. If the implementation adds * new pipes, return the new head pipe. */ public @NotNull Pipe createSecurityPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) { return tail; --- 87,97 ---- * wishes to add new pipes, it should do so by extending * {@link AbstractFilterPipeImpl} and making sure that this {@link Pipe} * eventually processes messages. * * @return ! * The default implementation just returns {@code tail}, which means * no additional pipe is inserted. If the implementation adds * new pipes, return the new head pipe. */ public @NotNull Pipe createSecurityPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) { return tail;
< prev index next >