1 22 package org.jboss.ejb3.test.consumer; 23 24 25 26 27 33 public interface TestStatus 34 { 35 void clear(); 36 37 String queueFired(); 38 39 String topicFired(); 40 41 String interceptedTopic(); 42 43 String interceptedQueue(); 44 45 boolean postConstruct(); 46 47 boolean preDestroy(); 48 49 void testXA() throws Exception ; 50 51 void testLocal() throws Exception ; 52 53 void testDeploymentDescriptorXA() throws Exception ; 54 55 void testDeploymentDescriptorLocal() throws Exception ; 56 57 boolean fieldMessage(); 58 59 boolean setterMessage(); 60 } 61 | Popular Tags |