1 8 9 package mx4j.examples.tools.adaptor.http; 10 11 import javax.management.ObjectName ; 12 import javax.management.relation.InvalidRoleValueException ; 13 import javax.management.relation.RelationSupport ; 14 import javax.management.relation.RelationSupportMBean ; 15 import javax.management.relation.RoleList ; 16 17 20 interface SimpleRelationTestSupportMBean extends RelationSupportMBean 21 { 22 } 23 24 public class SimpleRelationTestSupport extends RelationSupport implements SimpleRelationTestSupportMBean 25 { 26 public SimpleRelationTestSupport(String relationId, ObjectName relationServiceName, String relationTypeName, 27 RoleList roleList) throws InvalidRoleValueException , IllegalArgumentException 28 { 29 super(relationId, relationServiceName, relationTypeName, roleList); 30 } 31 } 32 | Popular Tags |