blob: 8b11c0bc5d6937fa526099c67dcacb6cf23c5880 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package models;
public class Links {
private static String FAQ = "http://bwlehrpool.hs-offenburg.de/";
private static String OTRS = "https://bwlehrpool-otrs.rz.hs-offenburg.de//otrs/customer.pl";
private static String uriWindows="https://my.vmware.com/de/web/vmware/free#desktop_end_user_computing/vmware_player/6_0";
private static String uriLinux="https://my.vmware.com/de/web/vmware/free#desktop_end_user_computing/vmware_player/6_0";
public static String getFAQ() {
return FAQ;
}
public static String getOTRS() {
return OTRS;
}
public static String getUriWindows() {
return uriWindows;
}
public static String getUriLinux() {
return uriLinux;
}
}
|