Interface MOServerLookupListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
Snmp4jLogMib

public interface MOServerLookupListener extends EventListener
An object that is interested in callback notifications of lookup events on a MOServer instance has to implement the MOServerLookupListener interface.
Version:
1.1
Author:
Frank Fock
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    A MOServer instance has looked up a managed object for which the listener has been registered.
    void
    A MOServer instance is about to check if the managed object for which the listener had been registered matches a query.
  • Method Details

    • lookupEvent

      void lookupEvent(MOServerLookupEvent event)
      A MOServer instance has looked up a managed object for which the listener has been registered.
      Parameters:
      event - a MOServerLookupEvent describing the lookup query and the managed object that has been looked up.
    • queryEvent

      void queryEvent(MOServerLookupEvent event)
      A MOServer instance is about to check if the managed object for which the listener had been registered matches a query. A managed object with dynamic content like a non-static table might use this event to update its content.
      Parameters:
      event - a MOServerLookupEvent describing the lookup query and the managed object that is to be queried.