KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > javax > management > relation > SimpleRelationTestSupport


1 /*
2  * Copyright (C) The MX4J Contributors.
3  * All rights reserved.
4  *
5  * This software is distributed under the terms of the MX4J License version 1.0.
6  * See the terms of the MX4J License in the documentation provided with this software.
7  */

8
9 package test.javax.management.relation;
10
11 import javax.management.ObjectName JavaDoc;
12 import javax.management.relation.InvalidRoleValueException JavaDoc;
13 import javax.management.relation.RelationSupport JavaDoc;
14 import javax.management.relation.RoleList JavaDoc;
15
16 /**
17  * @version $Revision: 1.7 $
18  */

19 public class SimpleRelationTestSupport extends RelationSupport JavaDoc
20 {
21    public SimpleRelationTestSupport(String JavaDoc relationId, ObjectName JavaDoc relationServiceName, String JavaDoc relationTypeName,
22                                     RoleList JavaDoc roleList) throws InvalidRoleValueException JavaDoc, IllegalArgumentException JavaDoc
23    {
24       super(relationId, relationServiceName, relationTypeName, roleList);
25    }
26 }
27
Popular Tags