Package com.sun.xml.wss.provider.wsit
Class ClientPipeCreator
- java.lang.Object
-
- com.sun.xml.ws.api.client.ClientPipelineHook
-
- com.sun.xml.ws.assembler.metro.dev.ClientPipelineHook
-
- com.sun.xml.wss.provider.wsit.ClientPipeCreator
-
public class ClientPipeCreator extends ClientPipelineHook
This is used by WSClientContainer to return proper 196 security pipe to the StandAlonePipeAssembler and TangoPipeAssembler
-
-
Constructor Summary
Constructors Constructor Description ClientPipeCreator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PipecreateSecurityPipe(PolicyMap map, ClientPipeAssemblerContext ctxt, Pipe tail)Called during the client-side pipeline construction process once to allow a container to register a pipe for security.TubecreateSecurityTube(ClientTubelineAssemblyContext context)Called during the client-side tubeline construction process once to allow a container to register a tube for security.-
Methods inherited from class com.sun.xml.ws.api.client.ClientPipelineHook
createSecurityPipe
-
-
-
-
Method Detail
-
createSecurityPipe
public Pipe createSecurityPipe(PolicyMap map, ClientPipeAssemblerContext ctxt, Pipe tail)
Description copied from class:ClientPipelineHookCalled during the client-side pipeline construction process once to allow a container to register a pipe for security. This pipe will be injected to a point very close to the transport, allowing it to do some security operations.- Overrides:
createSecurityPipein classClientPipelineHook- Parameters:
map-PolicyMapholding policies for a scopectxt- Represents abstraction of SEI, WSDL abstraction etc. Context can be used whether add a new pipe to the head or not.tail- Head of the partially constructed pipeline. If the implementation wishes to add new pipes, it should do so by extendingAbstractFilterPipeImpland making sure that thisPipeeventually processes messages.- Returns:
- The default implementation just returns
tail, which means no additional pipe is inserted. If the implementation adds new pipes, return the new head pipe.
-
createSecurityTube
@NotNull public Tube createSecurityTube(ClientTubelineAssemblyContext context)
Description copied from class:ClientPipelineHookCalled during the client-side tubeline construction process once to allow a container to register a tube for security. This tube will be injected to a point very close to the transport, allowing it to do some security operations.If the implementation wishes to add new tubes, it should do so by extending
AbstractFilterTubeImpland making sure that thisTubeeventually processes messages.- Overrides:
createSecurityTubein classClientPipelineHook- Parameters:
context- Represents abstraction of PolicyMap, SEI, WSDL abstraction etc. Context can be used whether add a new tube to the head or not.- Returns:
- The default implementation just returns
tail, which means no additional tube is inserted. If the implementation adds new tubes, return the new head tube.
-
-