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 test.javax.management.relation;
10:
11: import javax.management.ObjectName;
12: import javax.management.relation.InvalidRoleValueException;
13: import javax.management.relation.RelationSupport;
14: import javax.management.relation.RoleList;
15:
16: /**
17: * @version $Revision: 1.7 $
18: */
19: public class SimpleRelationTestSupport extends RelationSupport {
20: public SimpleRelationTestSupport(String relationId,
21: ObjectName relationServiceName, String relationTypeName,
22: RoleList roleList) throws InvalidRoleValueException,
23: IllegalArgumentException {
24: super(relationId, relationServiceName, relationTypeName,
25: roleList);
26: }
27: }
|