final int MENU_IMMO = 2;
final int MENU_VERTRAG = 3;
final int QUIT = 4;
//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);
//Testdaten
//service.addTestData();
//Verarbeite Eingabe
while(true) {
int response = mainMenu.show();
switch(response) {
case MENU_MAKLER:
if(pfa.authenticate()) {
MaklerEditor me = new MaklerEditor(service);