]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/core/deploy/ResourceDistribution.java
Remove eclipse project definitions
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / core / deploy / ResourceDistribution.java
1 package org.argeo.slc.core.deploy;
2
3 import org.argeo.slc.build.Distribution;
4 import org.springframework.core.io.Resource;
5
6 public class ResourceDistribution implements Distribution {
7 private Resource location;
8
9 public ResourceDistribution() {
10 }
11
12 public ResourceDistribution(Resource location) {
13 this.location = location;
14 }
15
16 public String getDistributionId() {
17 return location.toString();
18 }
19
20 public Resource getLocation() {
21 return location;
22 }
23
24 public void setLocation(Resource location) {
25 this.location = location;
26 }
27
28 }