Package com.sun.xml.ws.server.sei
Class InvokerTube<T extends Invoker>
- java.lang.Object
-
- com.sun.xml.ws.api.pipe.helper.AbstractTubeImpl
-
- com.sun.xml.ws.server.sei.InvokerTube<T>
-
- All Implemented Interfaces:
Pipe
,Tube
,InvokerSource<T>
- Direct Known Subclasses:
InvokerTube
public abstract class InvokerTube<T extends Invoker> extends AbstractTubeImpl implements InvokerSource<T>
Base class forInvokerTube
restored to allow for containers to specify alternate implementations of SEI-based invoking.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
InvokerTube(InvokerTube<T> that, TubeCloner cloner)
Copy constructor.protected
InvokerTube(T invoker)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getInvoker(Packet request)
Returns theInvoker
object that serves the request.-
Methods inherited from class com.sun.xml.ws.api.pipe.helper.AbstractTubeImpl
copy, copy, doInvoke, doInvokeAndForget, doReturnWith, doSuspend, doSuspend, doSuspend, doSuspend, doThrow, doThrow, process
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.sun.xml.ws.api.pipe.Pipe
preDestroy
-
Methods inherited from interface com.sun.xml.ws.api.pipe.Tube
preDestroy, processException, processRequest, processResponse
-
-
-
-
Constructor Detail
-
InvokerTube
protected InvokerTube(T invoker)
-
InvokerTube
protected InvokerTube(InvokerTube<T> that, TubeCloner cloner)
Copy constructor.
-
-
Method Detail
-
getInvoker
@NotNull public T getInvoker(Packet request)
Returns theInvoker
object that serves the request.- Specified by:
getInvoker
in interfaceInvokerSource<T extends Invoker>
- Parameters:
request
- Packet for request- Returns:
- Selected invoker
-
-