1 | /** |
2 | * BSD-style license; for more info see http://xradar.sourceforge.net/license.html |
3 | */ |
4 | package org.sourceforge.xradar.config; |
5 | |
6 | /** |
7 | * @author rpelisse |
8 | * |
9 | */ |
10 | public class ReleaseData |
11 | { |
12 | private String system; |
13 | private String version; |
14 | private String date; |
15 | private int sequencdeId; |
16 | /** |
17 | * @return the sequencdeId |
18 | */ |
19 | public int getSequencdeId() { |
20 | return sequencdeId; |
21 | } |
22 | /** |
23 | * @param sequencdeId the sequencdeId to set |
24 | */ |
25 | public void setSequencdeId(int sequencdeId) { |
26 | this.sequencdeId = sequencdeId; |
27 | } |
28 | /** |
29 | * @return the date |
30 | */ |
31 | public String getDate() { |
32 | return date; |
33 | } |
34 | /** |
35 | * @param date the date to set |
36 | */ |
37 | public void setDate(String date) { |
38 | this.date = date; |
39 | } |
40 | /** |
41 | * @return the system |
42 | */ |
43 | public String getSystem() { |
44 | return system; |
45 | } |
46 | /** |
47 | * @param system the system to set |
48 | */ |
49 | public void setSystem(String system) { |
50 | this.system = system; |
51 | } |
52 | /** |
53 | * @return the version |
54 | */ |
55 | public String getVersion() { |
56 | return version; |
57 | } |
58 | /** |
59 | * @param version the version to set |
60 | */ |
61 | public void setVersion(String version) { |
62 | this.version = version; |
63 | } |
64 | } |