1 22 package org.jboss.ejb3.test.service; 23 24 import org.jboss.system.ServiceMBean; 25 26 import java.util.ArrayList ; 27 28 32 public interface TesterMBean extends ServiceMBean 33 { 34 void testServiceWithDefaultLocalJNDIName() throws Exception ; 35 void testServiceWithLocalBinding() throws Exception ; 36 void testDeploymentDescriptorServiceWithLocalBinding() throws Exception ; 37 void testLocalServiceWithInterfaceAnnotation() throws Exception ; 38 ArrayList getCreates(); 39 ArrayList getStarts(); 40 } 41 | Popular Tags |