]> git.argeo.org Git - gpl/argeo-slc.git/blob - ModularDeployedSystem.java
177fac83dd67248dc220b668b474630f08ee7507
[gpl/argeo-slc.git] / ModularDeployedSystem.java
1 package org.argeo.slc.deploy;
2
3 import java.util.List;
4
5 @SuppressWarnings("unchecked")
6 public interface ModularDeployedSystem<M extends Module> extends DeployedSystem {
7 /** List the underlying deployed modules (in real time) */
8 public List<M> listModules();
9 }