corba/src/share/classes/com/sun/corba/se/spi/monitoring/MonitoringManager.java
changeset 13171 1ac5e9a54a6e
parent 5555 b2b5ed3f0d0d
equal deleted inserted replaced
13082:9b19b2302c28 13171:1ac5e9a54a6e
     1 /*
     1 /*
     2  * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    22  * or visit www.oracle.com if you need additional information or have any
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    23  * questions.
    24  */
    24  */
    25 package com.sun.corba.se.spi.monitoring;
    25 package com.sun.corba.se.spi.monitoring;
    26 
    26 
       
    27 import java.io.Closeable;
    27 import com.sun.corba.se.spi.orb.ORB;
    28 import com.sun.corba.se.spi.orb.ORB;
    28 import com.sun.corba.se.spi.monitoring.MonitoredObject;
    29 import com.sun.corba.se.spi.monitoring.MonitoredObject;
    29 import java.util.*;
    30 import java.util.*;
    30 
    31 
    31 /**
    32 /**
    37  * <p>
    38  * <p>
    38  *
    39  *
    39  * @author Hemanth Puttaswamy
    40  * @author Hemanth Puttaswamy
    40  * </p>
    41  * </p>
    41  */
    42  */
    42 public interface MonitoringManager {
    43 public interface MonitoringManager extends Closeable {
    43 
    44 
    44   ///////////////////////////////////////
    45   ///////////////////////////////////////
    45   // operations
    46   // operations
    46 
    47 
    47 /**
    48 /**