Package com.sun.xml.ws.util.pipe
Class StandalonePipeAssembler
java.lang.Object
com.sun.xml.ws.util.pipe.StandalonePipeAssembler
- All Implemented Interfaces:
PipelineAssembler
Default Pipeline assembler for JAX-WS client and server side runtimes. It
assembles various pipes into a pipeline that a message needs to be passed
through.
- Author:
- Kohsuke Kawaguchi, Jitendra Kotamraju
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateClient(ClientPipeAssemblerContext context) Creates a new pipeline for clients.createServer(ServerPipeAssemblerContext context) On Server-side, HandlerChains cannot be changed after it is deployed.
-
Constructor Details
-
StandalonePipeAssembler
public StandalonePipeAssembler()
-
-
Method Details
-
createClient
Description copied from interface:PipelineAssemblerCreates a new pipeline for clients.When a JAX-WS client creates a proxy or a
Dispatchfrom aService, JAX-WS runtime internally uses this method to create a new pipeline as a part of the initilization.- Specified by:
createClientin interfacePipelineAssembler- Parameters:
context- Object that captures various contextual information that can be used to determine the pipeline to be assembled.- Returns:
- non-null freshly created pipeline.
-
createServer
On Server-side, HandlerChains cannot be changed after it is deployed. During assembling the Pipelines, we can decide if we really need a SOAPHandlerPipe and LogicalHandlerPipe for a particular Endpoint.- Specified by:
createServerin interfacePipelineAssembler- Parameters:
context- Object that captures various contextual information that can be used to determine the pipeline to be assembled.- Returns:
- non-null freshly created pipeline.
-