summaryrefslogtreecommitdiffstats
path: root/library/Icinga/Util/ConfigAwareFactory.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/Icinga/Util/ConfigAwareFactory.php')
-rw-r--r--library/Icinga/Util/ConfigAwareFactory.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/library/Icinga/Util/ConfigAwareFactory.php b/library/Icinga/Util/ConfigAwareFactory.php
new file mode 100644
index 0000000..133887a
--- /dev/null
+++ b/library/Icinga/Util/ConfigAwareFactory.php
@@ -0,0 +1,18 @@
+<?php
+/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
+
+namespace Icinga\Util;
+
+/**
+ * Interface defining a factory which is configured at runtime
+ */
+interface ConfigAwareFactory
+{
+ /**
+ * Set the factory's config
+ *
+ * @param mixed $config
+ * @throws \Icinga\Exception\ConfigurationError if the given config is not valid
+ */
+ public static function setConfig($config);
+}