Class AbstractMonitorJob
java.lang.Object
org.sentrysoftware.metricshub.engine.connector.model.monitor.AbstractMonitorJob
- All Implemented Interfaces:
Serializable,MonitorJob
- Direct Known Subclasses:
SimpleMonitorJob,StandardMonitorJob
Abstract base class implementing
MonitorJob, holding a set of keys to build a monitor ID.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAbstractMonitorJob(Set<String> keys) Initializes anAbstractMonitorJobwith the specified set of keys. -
Method Summary
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.sentrysoftware.metricshub.engine.connector.model.monitor.MonitorJob
getKeys
-
Constructor Details
-
AbstractMonitorJob
Initializes anAbstractMonitorJobwith the specified set of keys.- Parameters:
keys- The set of keys for the monitor job. It will be stored in aLinkedHashSetto preserve order.
-