01: /**
02: * $Id: JMXHelpers.java,v 1.1 2005/06/25 05:34:57 hc109819 Exp $
03: * Copyright 2005 Sun Microsystems, Inc. All
04: * rights reserved. Use of this product is subject
05: * to license terms. Federal Acquisitions:
06: * Commercial Software -- Government Users
07: * Subject to Standard License Terms and
08: * Conditions.
09: *
10: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.portal.admin.console.util;
14:
15: import java.util.Set;
16: import java.util.Iterator;
17: import java.io.IOException;
18:
19: // JMX
20: import javax.management.MBeanServerConnection;
21: import javax.management.ObjectName;
22: import javax.management.QueryExp;
23: import javax.management.remote.JMXConnector;
24:
25: // Admin Common
26: import com.sun.portal.admin.common.util.AdminClientUtil;
27:
28: /**
29: * This class is intended to be the single doorway interfacing
30: * with the JMX Admin Framework. It maintains a single
31: * MBeanServerConnection object for the current login user.
32: *
33: * There will be one JMXHelpers instance per active user
34: * session originated from the same JVM.
35: */
36:
37: public class JMXHelpers {
38:
39: /**
40: * The user id of the current user session.
41: */
42: //private static String uid = null;
43:
44: }
|