diff options
| author | Jonathan Bauer | 2014-09-10 14:54:40 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2014-09-10 14:54:40 +0200 |
| commit | 61e8e600dd1c9d6066711dfb9874e0117b87baf6 (patch) | |
| tree | c5321291edcc9286fbe75f1cbf1a0548fb78da1d /Dozentenmodul/src/main/java/models/Version.java | |
| parent | Merge branch 'maven' of git.openslx.org:openslx-ng/tutor-module into maven (diff) | |
| download | tutor-module-61e8e600dd1c9d6066711dfb9874e0117b87baf6.tar.gz tutor-module-61e8e600dd1c9d6066711dfb9874e0117b87baf6.tar.xz tutor-module-61e8e600dd1c9d6066711dfb9874e0117b87baf6.zip | |
mavenization v2
Diffstat (limited to 'Dozentenmodul/src/main/java/models/Version.java')
| -rw-r--r-- | Dozentenmodul/src/main/java/models/Version.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Dozentenmodul/src/main/java/models/Version.java b/Dozentenmodul/src/main/java/models/Version.java new file mode 100644 index 00000000..b44819e4 --- /dev/null +++ b/Dozentenmodul/src/main/java/models/Version.java @@ -0,0 +1,24 @@ +package models; + +public class Version { + + private static String Version = "1.06"; + private static String BuildDate = "04.09.2014"; + + + public static String getVersion() { + return Version; + } + public static void setVersion(String version) { + Version = version; + } + public static String getBuildDate() { + return BuildDate; + } + public static void setBuildDate(String buildDate) { + BuildDate = buildDate; + } + + + +} |
