]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/build/VersionedResourceDistribution.java
Save current state even if not completely stable
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / build / VersionedResourceDistribution.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.slc.core.build;
18
19 import org.argeo.slc.NameVersion;
20 import org.springframework.core.io.Resource;
21
22 /**
23 * The distribution of a software package (jar, zip, RPM, etc.) which is
24 * versioned. The archive itself is accessible via a {@link Resource}.
25 */
26 public class VersionedResourceDistribution extends ResourceDistribution
27 implements NameVersion {
28 private String name;
29 private String version;
30
31 public VersionedResourceDistribution() {
32 super();
33 }
34
35 public VersionedResourceDistribution(NameVersion nameVersion,
36 Resource resource) {
37 this(nameVersion.getName(), nameVersion.getVersion(), resource);
38 }
39
40 public VersionedResourceDistribution(String name, String version,
41 Resource resource) {
42 super(resource);
43 this.name = name;
44 this.version = version;
45 }
46
47 public String getName() {
48 return name;
49 }
50
51 public void setName(String name) {
52 this.name = name;
53 }
54
55 public String getVersion() {
56 return version;
57 }
58
59 public void setVersion(String version) {
60 this.version = version;
61 }
62
63 }