| com.sun.xml.ws.assembler.ClientPipelineHook
ClientPipelineHook | public class ClientPipelineHook extends com.sun.xml.ws.api.client.ClientPipelineHook (Code) | | author: Arun Gupta |
Method Summary | |
public Pipe | createSecurityPipe(PolicyMap policyMap, ClientPipeAssemblerContext ctxt, 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 - PolicyMap holding policies for a scope Parameters: ctxt - Represents abstraction of SEI, WSDL abstraction etc. |
createSecurityPipe | public Pipe createSecurityPipe(PolicyMap policyMap, ClientPipeAssemblerContext ctxt, Pipe tail)(Code) | | 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 - PolicyMap holding policies for a scope Parameters: ctxt - Represents abstraction of SEI, WSDL abstraction etc. Context can be usedwhether add a new pipe to the head or not. Parameters: tail - Head of the partially constructed pipeline. If the implementationwishes to add new pipes, it should do so by extendingcom.sun.xml.ws.api.pipe.helper.AbstractFilterPipeImpl and making sure that this com.sun.xml.ws.api.pipe.Pipeeventually processes messages.The default implementation just returns tail, which meansno additional pipe is inserted. If the implementation addsnew pipes, return the new head pipe. |
|
|