01: /*
02: * Copyright (C) The MX4J Contributors.
03: * All rights reserved.
04: *
05: * This software is distributed under the terms of the MX4J License version 1.0.
06: * See the terms of the MX4J License in the documentation provided with this software.
07: */
08:
09: 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: /**
18: * @version $Revision: 1.1 $
19: */
20: interface SimpleRelationTestSupportMBean extends RelationSupportMBean {
21: }
22:
23: public class SimpleRelationTestSupport extends RelationSupport
24: implements SimpleRelationTestSupportMBean {
25: public SimpleRelationTestSupport(String relationId,
26: ObjectName relationServiceName, String relationTypeName,
27: RoleList roleList) throws InvalidRoleValueException,
28: IllegalArgumentException {
29: super(relationId, relationServiceName, relationTypeName,
30: roleList);
31: }
32: }
|