summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/models/Links.java
blob: dba1771dc2d35894385dfd6492cfcb8640cdc2ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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";
	
	public static String getFAQ() {
		return FAQ;
	}
	
	public static String getOTRS() {
		return OTRS;
	}
}