]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/Module.java
Remote shutdown
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / deploy / Module.java
index 897358e0c92bd93fd3e34e55b47a2f6cf6b5cb84..57e38792421ed042381de62a54d598a1b9e6bec2 100644 (file)
@@ -2,8 +2,8 @@ package org.argeo.slc.deploy;
 
 import org.argeo.slc.build.Distribution;
 
-public interface Module {
+public interface Module<D extends Distribution> extends DeployedSystem<D> {
        public String getName();
+
        public String getVersion();
-       public Distribution getDistribution();
 }