diff --git a/modules/monitoring/library/Monitoring/Command/Common/ObjectCommand.php b/modules/monitoring/library/Monitoring/Command/Common/ObjectCommand.php new file mode 100644 index 000000000..8727c237b --- /dev/null +++ b/modules/monitoring/library/Monitoring/Command/Common/ObjectCommand.php @@ -0,0 +1,62 @@ +assertOneOf($this->allowedObjects); + $this->object = $object; + return $this; + } + + /** + * Get the involved object + * + * @return MonitoredObject + */ + public function getObject() + { + return $this->object; + } +}