01: /*
02: * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.monitoring;
06:
07: import javax.management.MBeanServer;
08:
09: public interface ServerFactory {
10: public MBeanServer getMBeanServer(
11: MonitoringContext monitoringContext)
12: throws MonitoringException;
13: }
|