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 java.util.List;
08:
09: public interface ClientFactory {
10: public Client getClient(MonitoringContext monitoringContext,
11: List immortalMBeanObjectNames) throws MonitoringException;
12: }
|