]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/ModularDeployedSystem.java
Remote shutdown
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / deploy / ModularDeployedSystem.java
index 346d2bcaac029027fb64c54e66072f55bc274431..177fac83dd67248dc220b668b474630f08ee7507 100644 (file)
@@ -2,7 +2,8 @@ package org.argeo.slc.deploy;
 
 import java.util.List;
 
-public interface ModularDeployedSystem extends DeployedSystem {
+@SuppressWarnings("unchecked")
+public interface ModularDeployedSystem<M extends Module> extends DeployedSystem {
        /** List the underlying deployed modules (in real time) */
-       public List<DeployedSystem> listModules();
+       public List<M> listModules();
 }