public abstract class InvocationControllerImpl extends java.lang.Object implements InvocationController
| Constructor and Description |
|---|
InvocationControllerImpl() |
| Modifier and Type | Method and Description |
|---|---|
protected abstract MessageContext |
doInvoke(MessageContext request) |
abstract javax.xml.ws.Response |
doInvokeAsync(MessageContext mc) |
abstract java.util.concurrent.Future<?> |
doInvokeAsync(MessageContext mc,
javax.xml.ws.AsyncHandler asyncHandler) |
protected abstract void |
doInvokeOneWay(MessageContext mc) |
InvocationContext |
invoke(InvocationContext ic)
Performs a synchronous (blocking) invocation of a target service.
|
javax.xml.ws.Response |
invokeAsync(InvocationContext ic)
Performs an asynchronous (non-blocking) invocation of the client based on a callback model.
|
java.util.concurrent.Future<?> |
invokeAsync(InvocationContext ic,
javax.xml.ws.AsyncHandler asyncHandler)
Performs an asynchronous (non-blocking) invocation of the client based on a polling model.
|
void |
invokeOneWay(InvocationContext ic)
Performs a one-way invocation of the client.
|
protected abstract void |
prepareRequest(MessageContext mc)
Abstract method that must be implemented by whoever is providing the specific client binding.
|
protected abstract void |
prepareResponse(MessageContext mc)
Abstract method that must be implemented by whoever is providing the specific client binding.
|
public InvocationContext invoke(InvocationContext ic)
InvocationControllerinvoke in interface InvocationControllerprotected abstract MessageContext doInvoke(MessageContext request)
public void invokeOneWay(InvocationContext ic) throws java.lang.Exception
InvocationControllerinvokeOneWay in interface InvocationControllerjava.lang.Exceptionprotected abstract void doInvokeOneWay(MessageContext mc)
public javax.xml.ws.Response invokeAsync(InvocationContext ic)
InvocationControllerinvokeAsync in interface InvocationControllerpublic abstract javax.xml.ws.Response doInvokeAsync(MessageContext mc)
public java.util.concurrent.Future<?> invokeAsync(InvocationContext ic, javax.xml.ws.AsyncHandler asyncHandler)
InvocationControllerinvokeAsync in interface InvocationControllerpublic abstract java.util.concurrent.Future<?> doInvokeAsync(MessageContext mc, javax.xml.ws.AsyncHandler asyncHandler)
protected abstract void prepareRequest(MessageContext mc)
mc - protected abstract void prepareResponse(MessageContext mc)
mc - Copyright © 2004-2015 The Apache Software Foundation. All Rights Reserved.