src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/ServerPipeAssemblerContext.java

changeset 286
f50545b5e2f1
child 368
0989ad8c0860
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/ServerPipeAssemblerContext.java	Tue Mar 06 16:09:35 2012 -0800
     1.3 @@ -0,0 +1,115 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package com.sun.xml.internal.ws.api.pipe;
    1.30 +
    1.31 +import com.sun.istack.internal.NotNull;
    1.32 +import com.sun.istack.internal.Nullable;
    1.33 +import com.sun.xml.internal.ws.api.model.SEIModel;
    1.34 +import com.sun.xml.internal.ws.api.model.wsdl.WSDLPort;
    1.35 +import com.sun.xml.internal.ws.api.pipe.helper.PipeAdapter;
    1.36 +import com.sun.xml.internal.ws.api.server.WSEndpoint;
    1.37 +
    1.38 +import java.io.PrintStream;
    1.39 +
    1.40 +/**
    1.41 + * Factory for well-known server {@link Pipe} implementations
    1.42 + * that the {@link PipelineAssembler} needs to use
    1.43 + * to satisfy JAX-WS requirements.
    1.44 + *
    1.45 + * @author Jitendra Kotamraju
    1.46 + * @deprecated Use {@link ServerTubeAssemblerContext}.
    1.47 + */
    1.48 +public final class ServerPipeAssemblerContext extends ServerTubeAssemblerContext {
    1.49 +
    1.50 +    public ServerPipeAssemblerContext(@Nullable SEIModel seiModel, @Nullable WSDLPort wsdlModel, @NotNull WSEndpoint endpoint, @NotNull Tube terminal, boolean isSynchronous) {
    1.51 +        super(seiModel, wsdlModel, endpoint, terminal, isSynchronous);
    1.52 +    }
    1.53 +
    1.54 +    /**
    1.55 +     * Creates a {@link Pipe} that performs SOAP mustUnderstand processing.
    1.56 +     * This pipe should be before HandlerPipes.
    1.57 +     */
    1.58 +    public @NotNull Pipe createServerMUPipe(@NotNull Pipe next) {
    1.59 +        return PipeAdapter.adapt(super.createServerMUTube(PipeAdapter.adapt(next)));
    1.60 +    }
    1.61 +
    1.62 +    /**
    1.63 +     * creates a {@link Pipe} that dumps messages that pass through.
    1.64 +     */
    1.65 +    public Pipe createDumpPipe(String name, PrintStream out, Pipe next) {
    1.66 +        return PipeAdapter.adapt(super.createDumpTube(name, out, PipeAdapter.adapt(next)));
    1.67 +    }
    1.68 +
    1.69 +    /**
    1.70 +     * Creates a {@link Pipe} that does the monitoring of the invocation for a
    1.71 +     * container
    1.72 +     */
    1.73 +    public @NotNull Pipe createMonitoringPipe(@NotNull Pipe next) {
    1.74 +        return PipeAdapter.adapt(super.createMonitoringTube(PipeAdapter.adapt(next)));
    1.75 +    }
    1.76 +
    1.77 +    /**
    1.78 +     * Creates a {@link Pipe} that adds container specific security
    1.79 +     */
    1.80 +    public @NotNull Pipe createSecurityPipe(@NotNull Pipe next) {
    1.81 +        return PipeAdapter.adapt(super.createSecurityTube(PipeAdapter.adapt(next)));
    1.82 +    }
    1.83 +
    1.84 +    /**
    1.85 +     * creates a {@link Pipe} that validates messages against schema
    1.86 +     */
    1.87 +    public @NotNull Pipe createValidationPipe(@NotNull Pipe next) {
    1.88 +       return PipeAdapter.adapt(super.createValidationTube(PipeAdapter.adapt(next)));
    1.89 +    }
    1.90 +
    1.91 +    /**
    1.92 +     * Creates a {@link Pipe} that invokes protocol and logical handlers.
    1.93 +     */
    1.94 +    public @NotNull Pipe createHandlerPipe(@NotNull Pipe next) {
    1.95 +        return PipeAdapter.adapt(super.createHandlerTube(PipeAdapter.adapt(next)));
    1.96 +    }
    1.97 +
    1.98 +    /**
    1.99 +     * The last {@link Pipe} in the pipeline. The assembler is expected to put
   1.100 +     * additional {@link Pipe}s in front of it.
   1.101 +     *
   1.102 +     * <p>
   1.103 +     * (Just to give you the idea how this is used, normally the terminal pipe
   1.104 +     * is the one that invokes the user application or {@link javax.xml.ws.Provider}.)
   1.105 +     *
   1.106 +     * @return always non-null terminal pipe
   1.107 +     */
   1.108 +     public @NotNull Pipe getTerminalPipe() {
   1.109 +         return PipeAdapter.adapt(super.getTerminalTube());
   1.110 +    }
   1.111 +
   1.112 +     /**
   1.113 +     * Creates WS-Addressing pipe
   1.114 +     */
   1.115 +    public Pipe createWsaPipe(Pipe next) {
   1.116 +        return PipeAdapter.adapt(super.createWsaTube(PipeAdapter.adapt(next)));
   1.117 +    }
   1.118 +}

mercurial