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 Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description 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, useLinkableMonitor.getLinkedMonitorLinks()
instead.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, useLinkableMonitor.getMonitorEvents()
instead.
-
-
-
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, useLinkableMonitor.getMonitorEvents()
instead.Get anIterator
over an ordered collection ofMonitorEvents
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. A list of Events that this Monitor raises, and under what conditions.- Returns:
- An
Iterator
over an ordered collection ofMonitorEvent
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, useLinkableMonitor.getLinkedMonitorLinks()
instead.Get anIterator
over a collection ofLinkedMonitorLinks
, the collection will be ordered by Name. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. To which LinkableMonitor Object does this MonitorLink point to?- Returns:
- An
Iterator
over a collection ofMonitorLink
objects , the collection will be ordered by Name.
-
-