Interface LinkableMonitorComp

  • All Known Subinterfaces:
    LinkableMonitor, MonitorCheck, MonitorNode

    public interface LinkableMonitorComp
    This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
    • Method Detail

      • getMonitorEvents

        @Deprecated
        Iterator<MonitorEvent> getMonitorEvents()
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use LinkableMonitor.getMonitorEvents() instead.
        Get an Iterator over an ordered collection of MonitorEvents. If the collection is empty, an empty iterator will be returned, that is, this method will never return null. A list of Events that this Monitor raises, and under what conditions.
        Returns:
        An Iterator over an ordered collection of MonitorEvent objects .
      • getLinkedMonitorLinks

        @Deprecated
        Iterator<MonitorLink> getLinkedMonitorLinks()
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use LinkableMonitor.getLinkedMonitorLinks() instead.
        Get an Iterator over a collection of LinkedMonitorLinks, the collection will be ordered by Name. If the collection is empty, an empty iterator will be returned, that is, this method will never return null. To which LinkableMonitor Object does this MonitorLink point to?
        Returns:
        An Iterator over a collection of MonitorLink objects , the collection will be ordered by Name.