jdk/src/jdk.snmp/share/classes/com/sun/jmx/snmp/internal/SnmpSubSystem.java
changeset 27188 a1aa62221649
parent 27187 020b64fc02df
child 27189 b90845965ee9
equal deleted inserted replaced
27187:020b64fc02df 27188:a1aa62221649
     1 /*
       
     2  * Copyright (c) 2001, 2003, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     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
       
     7  * published by the Free Software Foundation.  Oracle designates this
       
     8  * particular file as subject to the "Classpath" exception as provided
       
     9  * by Oracle in the LICENSE file that accompanied this code.
       
    10  *
       
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14  * version 2 for more details (a copy is included in the LICENSE file that
       
    15  * accompanied this code).
       
    16  *
       
    17  * You should have received a copy of the GNU General Public License version
       
    18  * 2 along with this work; if not, write to the Free Software Foundation,
       
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20  *
       
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22  * or visit www.oracle.com if you need additional information or have any
       
    23  * questions.
       
    24  */
       
    25 package com.sun.jmx.snmp.internal;
       
    26 
       
    27 import com.sun.jmx.snmp.SnmpEngine;
       
    28 import com.sun.jmx.snmp.SnmpUnknownModelException;
       
    29 import java.util.Hashtable;
       
    30 /**
       
    31  * SNMP sub system interface. To allow engine framework integration, a sub system must implement this interface. A sub system is a model manager. Every model is identified by an ID. A sub system can retrieve a previously registered model using this ID.
       
    32  * <P> Every sub system is associated to its SNMP engine.
       
    33  * <p><b>This API is a Sun Microsystems internal API  and is subject
       
    34  * to change without notice.</b></p>
       
    35  */
       
    36 public interface SnmpSubSystem {
       
    37     /**
       
    38      * Returns the associated engine.
       
    39      * @return The engine.
       
    40      */
       
    41     public SnmpEngine getEngine();
       
    42 
       
    43     /**
       
    44      * Adds a model to this sub system.
       
    45      * @param id The model ID.
       
    46      * @param model The model to add.
       
    47      */
       
    48     public void addModel(int id, SnmpModel model);
       
    49 
       
    50     /**
       
    51      * Removes a model from this sub system.
       
    52      * @param id The model ID to remove.
       
    53      * @return The removed model.
       
    54      */
       
    55     public SnmpModel removeModel(int id) throws SnmpUnknownModelException;
       
    56 
       
    57     /**
       
    58      * Gets a model from this sub system.
       
    59      * @param id The model ID to get.
       
    60      * @return The model.
       
    61      */
       
    62     public SnmpModel getModel(int id) throws SnmpUnknownModelException;
       
    63 
       
    64     /**
       
    65      * Returns the set of model Ids that have been registered within the sub system.
       
    66      */
       
    67     public int[] getModelIds();
       
    68 
       
    69     /**
       
    70      * Returns the set of model names that have been registered within the sub system.
       
    71      */
       
    72     public String[] getModelNames();
       
    73 }