{
if (this.port == null)
{
Integer value = this.passport.getPort();
int i = (value != null && value.intValue() > 0) ? value.intValue() : ((this.passport instanceof AbstractPinTanPassport) ? 443 : 3000);
this.port = new IntegerInput(i);
this.port.setComment(i18n.tr("Bei PIN/TAN \"443\", sonst \"3000\""));
this.port.setMandatory(true);
}
return this.port;
}