1 22 package org.jboss.ejb3.test.stateful; 23 24 25 26 32 public interface Stateful extends ConcurrentStateful 33 { 34 boolean interceptorAccessed(); 35 36 boolean testSessionContext(); 37 38 public boolean wasPassivated(); 39 public String getInterceptorState(); 40 public void setInterceptorState(String param); 41 42 public void testThrownException() throws Exception ; 43 44 public void testExceptionCause() throws Exception ; 45 public void testSerializedState(String state); 46 47 public void removeBean(); 48 49 void testResources() throws Exception ; 50 51 void lookupStateful() throws Exception ; 52 void testStateful() throws Exception ; 53 54 } 55 | Popular Tags |