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; } }