| com.sun.xml.ws.assembler.ServerPipelineHook
ServerPipelineHook | public class ServerPipelineHook extends com.sun.xml.ws.api.server.ServerPipelineHook (Code) | | author: Arun Gupta |
Method Summary | |
public Pipe | createSecurityPipe(PolicyMap policyMap, SEIModel seiModel, WSDLPort wsdlModel, WSEndpoint owner, Pipe tail) Called during the server-side pipeline construction process once to allow a
container to register a pipe for security on the service endpoint.
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: seiModel - abstraction of server-side SEI Parameters: wsdlModel - abstraction of wsdl:port Parameters: owner - instance of deployed service Parameters: tail - Head of the partially constructed pipeline. |
createSecurityPipe | public Pipe createSecurityPipe(PolicyMap policyMap, SEIModel seiModel, WSDLPort wsdlModel, WSEndpoint owner, Pipe tail)(Code) | | Called during the server-side pipeline construction process once to allow a
container to register a pipe for security on the service endpoint.
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: seiModel - abstraction of server-side SEI Parameters: wsdlModel - abstraction of wsdl:port Parameters: owner - instance of deployed service 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 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. |
|
|