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 serverPipeimplementations that thePipelineAssemblerneeds 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 PipecreateDumpPipe(String name, PrintStream out, Pipe next)Deprecated.creates aPipethat dumps messages that pass through.PipecreateHandlerPipe(Pipe next)Deprecated.Creates aPipethat invokes protocol and logical handlers.PipecreateMonitoringPipe(Pipe next)Deprecated.Creates aPipethat does the monitoring of the invocation for a containerPipecreateSecurityPipe(Pipe next)Deprecated.Creates aPipethat adds container specific securityPipecreateServerMUPipe(Pipe next)Deprecated.Creates aPipethat performs SOAP mustUnderstand processing.PipecreateValidationPipe(Pipe next)Deprecated.creates aPipethat validates messages against schemaPipecreateWsaPipe(Pipe next)Deprecated.Creates WS-Addressing pipePipegetTerminalPipe()Deprecated.The lastPipein 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
-
-
-
-
Method Detail
-
createServerMUPipe
@NotNull public Pipe createServerMUPipe(@NotNull Pipe next)
Deprecated.Creates aPipethat performs SOAP mustUnderstand processing. This pipe should be before HandlerPipes.
-
createDumpPipe
public Pipe createDumpPipe(String name, PrintStream out, Pipe next)
Deprecated.creates aPipethat dumps messages that pass through.
-
createMonitoringPipe
@NotNull public Pipe createMonitoringPipe(@NotNull Pipe next)
Deprecated.Creates aPipethat does the monitoring of the invocation for a container
-
createSecurityPipe
@NotNull public Pipe createSecurityPipe(@NotNull Pipe next)
Deprecated.Creates aPipethat adds container specific security
-
createValidationPipe
@NotNull public Pipe createValidationPipe(@NotNull Pipe next)
Deprecated.creates aPipethat validates messages against schema
-
createHandlerPipe
@NotNull public Pipe createHandlerPipe(@NotNull Pipe next)
Deprecated.Creates aPipethat invokes protocol and logical handlers.
-
getTerminalPipe
@NotNull public Pipe getTerminalPipe()
Deprecated.The lastPipein the pipeline. The assembler is expected to put additionalPipes 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
-
-