aoqi@0: /* aoqi@0: * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. aoqi@0: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. aoqi@0: * aoqi@0: * This code is free software; you can redistribute it and/or modify it aoqi@0: * under the terms of the GNU General Public License version 2 only, as aoqi@0: * published by the Free Software Foundation. Oracle designates this aoqi@0: * particular file as subject to the "Classpath" exception as provided aoqi@0: * by Oracle in the LICENSE file that accompanied this code. aoqi@0: * aoqi@0: * This code is distributed in the hope that it will be useful, but WITHOUT aoqi@0: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or aoqi@0: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License aoqi@0: * version 2 for more details (a copy is included in the LICENSE file that aoqi@0: * accompanied this code). aoqi@0: * aoqi@0: * You should have received a copy of the GNU General Public License version aoqi@0: * 2 along with this work; if not, write to the Free Software Foundation, aoqi@0: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. aoqi@0: * aoqi@0: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA aoqi@0: * or visit www.oracle.com if you need additional information or have any aoqi@0: * questions. aoqi@0: */ aoqi@0: aoqi@0: package com.sun.xml.internal.ws.api.pipe; aoqi@0: aoqi@0: import com.sun.istack.internal.NotNull; aoqi@0: import com.sun.istack.internal.Nullable; aoqi@0: import com.sun.xml.internal.ws.api.model.SEIModel; aoqi@0: import com.sun.xml.internal.ws.api.model.wsdl.WSDLPort; aoqi@0: import com.sun.xml.internal.ws.api.pipe.helper.PipeAdapter; aoqi@0: import com.sun.xml.internal.ws.api.server.WSEndpoint; aoqi@0: aoqi@0: import java.io.PrintStream; aoqi@0: aoqi@0: /** aoqi@0: * Factory for well-known server {@link Pipe} implementations aoqi@0: * that the {@link PipelineAssembler} needs to use aoqi@0: * to satisfy JAX-WS requirements. aoqi@0: * aoqi@0: * @author Jitendra Kotamraju aoqi@0: * @deprecated Use {@link ServerTubeAssemblerContext}. aoqi@0: */ aoqi@0: public final class ServerPipeAssemblerContext extends ServerTubeAssemblerContext { aoqi@0: aoqi@0: public ServerPipeAssemblerContext(@Nullable SEIModel seiModel, @Nullable WSDLPort wsdlModel, @NotNull WSEndpoint endpoint, @NotNull Tube terminal, boolean isSynchronous) { aoqi@0: super(seiModel, wsdlModel, endpoint, terminal, isSynchronous); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * Creates a {@link Pipe} that performs SOAP mustUnderstand processing. aoqi@0: * This pipe should be before HandlerPipes. aoqi@0: */ aoqi@0: public @NotNull Pipe createServerMUPipe(@NotNull Pipe next) { aoqi@0: return PipeAdapter.adapt(super.createServerMUTube(PipeAdapter.adapt(next))); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * creates a {@link Pipe} that dumps messages that pass through. aoqi@0: */ aoqi@0: public Pipe createDumpPipe(String name, PrintStream out, Pipe next) { aoqi@0: return PipeAdapter.adapt(super.createDumpTube(name, out, PipeAdapter.adapt(next))); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * Creates a {@link Pipe} that does the monitoring of the invocation for a aoqi@0: * container aoqi@0: */ aoqi@0: public @NotNull Pipe createMonitoringPipe(@NotNull Pipe next) { aoqi@0: return PipeAdapter.adapt(super.createMonitoringTube(PipeAdapter.adapt(next))); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * Creates a {@link Pipe} that adds container specific security aoqi@0: */ aoqi@0: public @NotNull Pipe createSecurityPipe(@NotNull Pipe next) { aoqi@0: return PipeAdapter.adapt(super.createSecurityTube(PipeAdapter.adapt(next))); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * creates a {@link Pipe} that validates messages against schema aoqi@0: */ aoqi@0: public @NotNull Pipe createValidationPipe(@NotNull Pipe next) { aoqi@0: return PipeAdapter.adapt(super.createValidationTube(PipeAdapter.adapt(next))); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * Creates a {@link Pipe} that invokes protocol and logical handlers. aoqi@0: */ aoqi@0: public @NotNull Pipe createHandlerPipe(@NotNull Pipe next) { aoqi@0: return PipeAdapter.adapt(super.createHandlerTube(PipeAdapter.adapt(next))); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * The last {@link Pipe} in the pipeline. The assembler is expected to put aoqi@0: * additional {@link Pipe}s in front of it. aoqi@0: * aoqi@0: *

aoqi@0: * (Just to give you the idea how this is used, normally the terminal pipe aoqi@0: * is the one that invokes the user application or {@link javax.xml.ws.Provider}.) aoqi@0: * aoqi@0: * @return always non-null terminal pipe aoqi@0: */ aoqi@0: public @NotNull Pipe getTerminalPipe() { aoqi@0: return PipeAdapter.adapt(super.getTerminalTube()); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * Creates WS-Addressing pipe aoqi@0: */ aoqi@0: public Pipe createWsaPipe(Pipe next) { aoqi@0: return PipeAdapter.adapt(super.createWsaTube(PipeAdapter.adapt(next))); aoqi@0: } aoqi@0: }