//Erzeuge Menü
Menu mainMenu = new Menu("Hauptmenü");
mainMenu.addEntry("Makler-Verwaltung", MENU_MAKLER);
mainMenu.addEntry("Personen-Verwaltung", MENU_PERSON);
mainMenu.addEntry("Immobilien-Verwaltung", MENU_IMMO);
mainMenu.addEntry("Vertragsmenü", MENU_VERTRAG);
mainMenu.addEntry("Beenden", QUIT);
//Authentifizierungsmöglichkeiten
PropertiesFileAuthenticator pfa = new PropertiesFileAuthenticator("admin.properties");
MaklerAuthenticator ma = new MaklerAuthenticator(service);