KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mx4j > examples > tools > adaptor > http > 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 mx4j.examples.tools.adaptor.http;
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.RelationSupportMBean JavaDoc;
15 import javax.management.relation.RoleList JavaDoc;
16
17 /**
18  * @version $Revision: 1.3 $
19  */

20 interface SimpleRelationTestSupportMBean extends RelationSupportMBean JavaDoc
21 {
22 }
23
24 public class SimpleRelationTestSupport extends RelationSupport JavaDoc implements SimpleRelationTestSupportMBean
25 {
26    public SimpleRelationTestSupport(String JavaDoc relationId, ObjectName JavaDoc relationServiceName, String JavaDoc relationTypeName,
27                                     RoleList JavaDoc roleList) throws InvalidRoleValueException JavaDoc, IllegalArgumentException JavaDoc
28    {
29       super(relationId, relationServiceName, relationTypeName, roleList);
30    }
31 }
32
Popular Tags