| org.apache.cxf.endpoint.Client
destroy | void destroy()(Code) | | Indicates that the client is no longer needed and that any resources it holds
can now be freed.
|
getConduit | Conduit getConduit()(Code) | | Get the Conduit that messages for this client will be sent on.
Conduit |
getConduitSelector | ConduitSelector getConduitSelector()(Code) | | Get the ConduitSelector responsible for retreiving the Conduit.
the current ConduitSelector |
invoke | Object[] invoke(String operationName, Object... params) throws Exception(Code) | | Invokes an operation syncronously
Parameters: operationName - The name of the operation to be invoked. The service namespace will be usedwhen looking up the BindingOperationInfo. Parameters: params - The params that matches the parts of the input message of the operation The return values that matche the parts of the output message of the operation |
invoke | Object[] invoke(QName operationName, Object... params) throws Exception(Code) | | Invokes an operation syncronously
Parameters: operationName - The name of the operation to be invoked Parameters: params - The params that matches the parts of the input message of the operation The return values that matche the parts of the output message of the operation |
invoke | Object[] invoke(BindingOperationInfo oi, Object... params) throws Exception(Code) | | Invokes an operation syncronously
Parameters: oi - The operation to be invoked Parameters: params - The params that matches the parts of the input message of the operation The return values that matche the parts of the output message of the operation |
invoke | Object[] invoke(BindingOperationInfo oi, Object[] params, Map<String, Object> context) throws Exception(Code) | | Invokes an operation syncronously
Parameters: oi - The operation to be invoked Parameters: params - The params that matches the parts of the input message of the operation Parameters: context - Optional (can be null) contextual information for the invocation The return values that matche the parts of the output message of the operation |
setConduitSelector | void setConduitSelector(ConduitSelector selector)(Code) | | Set the ConduitSelector responsible for retreiving the Conduit.
Parameters: selector - the ConduitSelector to use |
|
|