Interface MonitorNodeComp

  • All Known Subinterfaces:
    MonitorNode

    public interface MonitorNodeComp
    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

      • getChildMonitorLinks

        @Deprecated
        Iterator<MonitorLink> getChildMonitorLinks()
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use MonitorNode.getChildMonitorLinks() instead.
        Get an Iterator over a collection of ChildMonitorLinks, 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. The children of this monitor node.
        Returns:
        An Iterator over a collection of MonitorLink objects , the collection will be ordered by Name.
      • getChildMonitorChecks

        @Deprecated
        Iterator<MonitorCheck> getChildMonitorChecks()
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use MonitorNode.getChildMonitorChecks() instead.
        Get an Iterator over a collection of ChildMonitorChecks, 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. The children of this monitor node.
        Returns:
        An Iterator over a collection of MonitorCheck objects , the collection will be ordered by Name.
      • getChildMonitorNodes

        @Deprecated
        Iterator<MonitorNode> getChildMonitorNodes()
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use MonitorNode.getChildMonitorNodes() instead.
        Get an Iterator over a collection of ChildMonitorNodes, 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. The children of this monitor node.
        Returns:
        An Iterator over a collection of MonitorNode objects , the collection will be ordered by Name.