]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.api/src/org/argeo/slc/deploy/ModularDeployedSystem.java
Upgrade all classpaths to Java 11
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / deploy / ModularDeployedSystem.java
1 package org.argeo.slc.deploy;
2
3 import java.util.List;
4
5 public interface ModularDeployedSystem<M extends Module> extends DeployedSystem {
6 /** List the underlying deployed modules (in real time) */
7 public List<M> listModules();
8 }