1 22 package org.jboss.ejb3.test.stateful; 23 24 27 public interface ClusteredStateful extends ConcurrentStateful 28 { 29 boolean interceptorAccessed(); 30 31 boolean testSessionContext(); 32 33 boolean wasPassivated(); 34 String getInterceptorState(); 35 void setInterceptorState(String param); 36 37 void testThrownException() throws Exception ; 38 39 void testExceptionCause() throws Exception ; 40 void testSerializedState(String state); 41 42 void removeBean(); 43 44 void testResources() throws Exception ; 45 } 46 | Popular Tags |