|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sun.xml.ws.api.server.ServerPipelineHook
public abstract class ServerPipelineHook
Allow the container (primarily Glassfish) to inject their own pipes into the pipeline.
This interface has a rather ad-hoc set of methods, because we didn't want to define an autonomous pipe-assembly process. (We thought this is a smaller evil compared to that.)
JAX-WS obtains this through Container.getSPI(Class)
.
Constructor Summary | |
---|---|
ServerPipelineHook()
|
Method Summary | |
---|---|
Pipe |
createMonitoringPipe(ServerPipeAssemblerContext ctxt,
Pipe tail)
Called during the pipeline construction process once to allow a container to register a pipe for monitoring. |
Pipe |
createSecurityPipe(ServerPipeAssemblerContext ctxt,
Pipe tail)
Called during the pipeline construction process once to allow a container to register a pipe for security. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ServerPipelineHook()
Method Detail |
---|
@NotNull public Pipe createMonitoringPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail)
ctxt
- 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 extending
AbstractFilterPipeImpl
and making sure that this Pipe
eventually processes messages.
@NotNull public Pipe createSecurityPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail)
ctxt
- 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 extending
AbstractFilterPipeImpl
and making sure that this Pipe
eventually processes messages.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |