* @return
*/
public Class<?> getInvokedBusinessInterface()
{
//TODO Should be getting from current invocation
SerializableMethod invokedMethod = SessionSpecContainer.invokedMethod.get();
assert invokedMethod!=null : "Invoked Method has not been set";
// Obtain the name of the invoking interface
String interfaceName = null;
if (invokedMethod != null)
{
interfaceName = invokedMethod.getActualClassName();
}
// Test for no invoked business interface
if(interfaceName==null)
{