]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/deploy/ResourceSet.java
Rename resource set
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / deploy / ResourceSet.java
diff --git a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/deploy/ResourceSet.java b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/deploy/ResourceSet.java
new file mode 100644 (file)
index 0000000..6d670e0
--- /dev/null
@@ -0,0 +1,13 @@
+package org.argeo.slc.core.deploy;
+
+import java.util.Map;
+
+import org.springframework.core.io.Resource;
+
+public interface ResourceSet {
+       /**
+        * List the resources, identified by their relative path. Relative paths
+        * must NOT start with a '/'.
+        */
+       public Map<String, Resource> listResources();
+}