⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 managedobject.java

📁 你个snmp的源码
💻 JAVA
字号:
/*_############################################################################
  _##
  _##  SNMP4J-Agent - ManagedObject.java
  _##
  _##  Copyright 2005-2006  Frank Fock (SNMP4J.org)
  _##
  _##  Licensed under the Apache License, Version 2.0 (the "License");
  _##  you may not use this file except in compliance with the License.
  _##  You may obtain a copy of the License at
  _##
  _##      http://www.apache.org/licenses/LICENSE-2.0
  _##
  _##  Unless required by applicable law or agreed to in writing, software
  _##  distributed under the License is distributed on an "AS IS" BASIS,
  _##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  _##  See the License for the specific language governing permissions and
  _##  limitations under the License.
  _##
  _##########################################################################*/


package org.snmp4j.agent;

import org.snmp4j.smi.OID;
import org.snmp4j.agent.request.SubRequest;

/**
 * The <code>ManagedObject</code> interface defines the basic operations
 * for all SNMP(4J) manageable objects.
 *
 * @author Frank Fock
 * @version 1.0
 */
public interface ManagedObject {

  /**
   * Returns the scope of object identifiers this managed object is managing.
   * @return
   *    the <code>MOScope</code> that defines a range (possibly also a single
   *    or none instance OID) of object IDs managed by this managed object.
   */
  MOScope getScope();

  /**
   * Finds the first object ID (OID) in the specified search range.
   * @param range
   *    the <code>MOScope</code> for the search.
   * @return
   *    the <code>OID</code> that is included in the search <code>range</code>
   *    and <code>null</code> if no such instances could be found.
   */
  OID find(MOScope range);

  /**
   * Processes a GET request and return the result in the supplied sub-request.
   *
   * @param request
   *    the <code>SubRequest</code> to process.
   */
  void get(SubRequest request);

  /**
   * Finds the successor instance for the object instance ID (OID) given
   * by the supplied sub-request and returns it within the supplied sub-request
   * object.
   *
   * @param request
   *    the <code>SubRequest</code> to process.
   * @return
   *    <code>true</code> if the search request found an appropriate instance,
   *    <code>false</code> otherwise.
   */
  boolean next(SubRequest request);

  /**
   * Prepares a SET (sub)request. This method represents the first phase of a
   * two phase commit. During preparation all necessary resources should be
   * locked in order to be able to execute the commit without claiming
   * additional resources.
   *
   * @param request
   *    the <code>SubRequest</code> to process.
   */
  void prepare(SubRequest request);

  /**
   * Commits a previously prepared SET (sub)request. This is the second phase
   * of a two phase commit. The change is committed but the resources locked
   * during prepare not freed yet.
   * @param request
   *    the <code>SubRequest</code> to process.
   */
  void commit(SubRequest request);

  /**
   * Compensates (undo) a (sub)request when a commit of another subrequest
   * failed with an error. This also frees any resources locked during
   * the preparation phase.
   * @param request
   *    the <code>SubRequest</code> to process.
   */
  void undo(SubRequest request);

  /**
   * Cleansup a (sub)request and frees all resources locked during
   * the preparation phase.
   * @param request
   *    the <code>SubRequest</code> to process.
   */
  void cleanup(SubRequest request);

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -