1 22 package org.jboss.ejb3.test.ejbcontext; 23 24 import javax.ejb.Remote ; 25 26 27 33 @Remote  34 public interface Stateful 35 { 36 public void testEjbContext() throws Exception ; 37 38 public void test(); 39 40 public Class testInvokedBusinessInterface() throws Exception ; 41 42 public Class testLocalInvokedBusinessInterface() throws Exception ; 43 44 public Object getBusinessObject() throws Exception ; 45 46 47 String getState(); 48 49 void setState(String state); 50 } 51 | Popular Tags |