]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/deploy/ResourceSet.java
Improve executions and system calls
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / deploy / ResourceSet.java
1 package org.argeo.slc.core.deploy;
2
3 import java.util.Map;
4
5 import org.springframework.core.io.Resource;
6
7 public interface ResourceSet {
8 /**
9 * List the resources, identified by their relative path. Relative paths
10 * must NOT start with a '/'.
11 */
12 public Map<String, Resource> listResources();
13 }