Refactor Argeo API
[gpl/argeo-slc.git] / org.argeo.api.slc / src / org / argeo / api / slc / deploy / ModularDeployedSystem.java
diff --git a/org.argeo.api.slc/src/org/argeo/api/slc/deploy/ModularDeployedSystem.java b/org.argeo.api.slc/src/org/argeo/api/slc/deploy/ModularDeployedSystem.java
new file mode 100644 (file)
index 0000000..7bca5af
--- /dev/null
@@ -0,0 +1,8 @@
+package org.argeo.api.slc.deploy;
+
+import java.util.List;
+
+public interface ModularDeployedSystem<M extends Module> extends DeployedSystem {
+       /** List the underlying deployed modules (in real time) */
+       public List<M> listModules();
+}