Package com.sun.xml.ws.api.pipe
Class ServerPipeAssemblerContext
- java.lang.Object
-
- com.sun.xml.ws.api.pipe.ServerTubeAssemblerContext
-
- com.sun.xml.ws.api.pipe.ServerPipeAssemblerContext
-
public final class ServerPipeAssemblerContext extends ServerTubeAssemblerContext
Deprecated.Factory for well-known serverPipe
implementations that thePipelineAssembler
needs to use to satisfy JAX-WS requirements.- Author:
- Jitendra Kotamraju
-
-
Constructor Summary
Constructors Constructor Description ServerPipeAssemblerContext(SEIModel seiModel, WSDLPort wsdlModel, WSEndpoint endpoint, Tube terminal, boolean isSynchronous)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Pipe
createDumpPipe(String name, PrintStream out, Pipe next)
Deprecated.creates aPipe
that dumps messages that pass through.Pipe
createHandlerPipe(Pipe next)
Deprecated.Creates aPipe
that invokes protocol and logical handlers.Pipe
createMonitoringPipe(Pipe next)
Deprecated.Creates aPipe
that does the monitoring of the invocation for a containerPipe
createSecurityPipe(Pipe next)
Deprecated.Creates aPipe
that adds container specific securityPipe
createServerMUPipe(Pipe next)
Deprecated.Creates aPipe
that performs SOAP mustUnderstand processing.Pipe
createValidationPipe(Pipe next)
Deprecated.creates aPipe
that validates messages against schemaPipe
createWsaPipe(Pipe next)
Deprecated.Creates WS-Addressing pipePipe
getTerminalPipe()
Deprecated.The lastPipe
in the pipeline.-
Methods inherited from class com.sun.xml.ws.api.pipe.ServerTubeAssemblerContext
createDumpTube, createHandlerTube, createMonitoringTube, createSecurityTube, createServerMUTube, createValidationTube, createWsaTube, getCodec, getEndpoint, getSEIModel, getTerminalTube, getWsdlModel, isSynchronous, setCodec
-
-
-
-
Constructor Detail
-
ServerPipeAssemblerContext
public ServerPipeAssemblerContext(@Nullable SEIModel seiModel, @Nullable WSDLPort wsdlModel, @NotNull WSEndpoint endpoint, @NotNull Tube terminal, boolean isSynchronous)
Deprecated.
-
-
Method Detail
-
createServerMUPipe
@NotNull public Pipe createServerMUPipe(@NotNull Pipe next)
Deprecated.Creates aPipe
that performs SOAP mustUnderstand processing. This pipe should be before HandlerPipes.
-
createDumpPipe
public Pipe createDumpPipe(String name, PrintStream out, Pipe next)
Deprecated.creates aPipe
that dumps messages that pass through.
-
createMonitoringPipe
@NotNull public Pipe createMonitoringPipe(@NotNull Pipe next)
Deprecated.Creates aPipe
that does the monitoring of the invocation for a container
-
createSecurityPipe
@NotNull public Pipe createSecurityPipe(@NotNull Pipe next)
Deprecated.Creates aPipe
that adds container specific security
-
createValidationPipe
@NotNull public Pipe createValidationPipe(@NotNull Pipe next)
Deprecated.creates aPipe
that validates messages against schema
-
createHandlerPipe
@NotNull public Pipe createHandlerPipe(@NotNull Pipe next)
Deprecated.Creates aPipe
that invokes protocol and logical handlers.
-
getTerminalPipe
@NotNull public Pipe getTerminalPipe()
Deprecated.The lastPipe
in the pipeline. The assembler is expected to put additionalPipe
s in front of it.(Just to give you the idea how this is used, normally the terminal pipe is the one that invokes the user application or
Provider
.)- Returns:
- always non-null terminal pipe
-
-