]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.api.slc/src/org/argeo/api/slc/deploy/ModularDeployedSystem.java
Prepare next development cycle
[gpl/argeo-slc.git] / org.argeo.api.slc / src / org / argeo / api / slc / deploy / ModularDeployedSystem.java
1 package org.argeo.api.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 }