]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/ModularDeployedSystem.java
Introduce JMX agent
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / 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 }