| org.jboss.test.cts.interfaces.CallerSession
CallerSession | public interface CallerSession extends EJBObject(Code) | | A session bean that calls another bean in a seperate deployment
author: Scott.Stark@jboss.org version: $Revision: 57211 $ |
Method Summary | |
public void | appEx() | public void | callAppEx() | public void | callByValueInSameJar() | public CalleeData | simpleCall(boolean isCaller) A call that looks up the cts2.jar CalleeSessionHome from JNDI each
time, creates an instance and calls simpleCall(false) to test type
isolation between jars. | public CalleeData | simpleCall2(boolean isCaller) A call that looks up the cts2.jar CalleeSessionHome from JNDI once
and resuses the home on subsequent calls, creates an instance and calls
simpleCall(false) to test type isolation between jars. | public void | validateValueMarshalling(ReferenceTest test) |
simpleCall | public CalleeData simpleCall(boolean isCaller) throws RemoteException(Code) | | A call that looks up the cts2.jar CalleeSessionHome from JNDI each
time, creates an instance and calls simpleCall(false) to test type
isolation between jars.
Parameters: isCaller - throws: RemoteException - |
simpleCall2 | public CalleeData simpleCall2(boolean isCaller) throws RemoteException(Code) | | A call that looks up the cts2.jar CalleeSessionHome from JNDI once
and resuses the home on subsequent calls, creates an instance and calls
simpleCall(false) to test type isolation between jars.
Parameters: isCaller - throws: RemoteException - |
validateValueMarshalling | public void validateValueMarshalling(ReferenceTest test) throws RemoteException(Code) | | Make a call that requires is test argument to be passed by value
Parameters: test - argument used to test call marshalling throws: RemoteException - |
|
|