403404405406407408409410
public Input getPassportAuswahl() throws RemoteException, ApplicationException { if (passportAuswahl != null) return passportAuswahl; passportAuswahl = new PassportInput(getKonto()); return passportAuswahl; }
120121122123124125126127
* @throws RemoteException */ private PassportInput getInput() throws RemoteException { if (this.input == null) this.input = new PassportInput(this.konto); return this.input; }