Class ClientPipelineHook
java.lang.Object
com.sun.xml.ws.api.client.ClientPipelineHook
com.sun.xml.ws.assembler.metro.dev.ClientPipelineHook
- Direct Known Subclasses:
ClientPipeCreator
public class ClientPipelineHook
extends com.sun.xml.ws.api.client.ClientPipelineHook
- Author:
- Arun Gupta
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncom.sun.xml.ws.api.pipe.PipecreateSecurityPipe(com.sun.xml.ws.policy.PolicyMap policyMap, com.sun.xml.ws.api.pipe.ClientPipeAssemblerContext ctxt, com.sun.xml.ws.api.pipe.Pipe tail) Deprecated.com.sun.xml.ws.api.pipe.TubecreateSecurityTube(com.sun.xml.ws.assembler.dev.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
-
Constructor Details
-
ClientPipelineHook
public ClientPipelineHook()Default constructor.
-
-
Method Details
-
createSecurityPipe
@NotNull @Deprecated public com.sun.xml.ws.api.pipe.Pipe createSecurityPipe(@Nullable com.sun.xml.ws.policy.PolicyMap policyMap, com.sun.xml.ws.api.pipe.ClientPipeAssemblerContext ctxt, @NotNull com.sun.xml.ws.api.pipe.Pipe tail) Called 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.- Parameters:
policyMap-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 com.sun.xml.ws.api.pipe.Tube createSecurityTube(com.sun.xml.ws.assembler.dev.ClientTubelineAssemblyContext context) Called 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.- 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.
-
createSecurityTube(com.sun.xml.ws.assembler.dev.ClientTubelineAssemblyContext).