/**************************************************************************** * Copyright (C) 2012 ecsec GmbH. * All rights reserved. * Contact: ecsec GmbH (info@ecsec.de) * * This file is part of the Open eCard App. * * GNU General Public License Usage * This file may be used under the terms of the GNU General Public * License version 3.0 as published by the Free Software Foundation * and appearing in the file LICENSE.GPL included in the packaging of * this file. Please review the following information to ensure the * GNU General Public License version 3.0 requirements will be met: * http://www.gnu.org/copyleft/gpl.html. * * Other Usage * Alternatively, this file may be used in accordance with the terms * and conditions contained in a signed written agreement between * you and ecsec GmbH. * ***************************************************************************/ package org.openecard.sal.protocol.eac.gui; import org.openecard.common.I18n; import org.openecard.common.sal.anytype.PACEMarkerType; import org.openecard.gui.definition.PasswordField; import org.openecard.gui.definition.Step; import org.openecard.gui.definition.Text; import org.openecard.sal.protocol.eac.EACData; /** * PIN GUI step for EAC. * This GUI step behaves differently * * @author Tobias Wich <tobias.wich@ecsec.de> * @author Moritz Horsch <horsch@cdc.informatik.tu-darmstadt.de> */ public class PINStep extends Step { // step id public static final String STEP_ID = "PROTOCOL_EAC_GUI_STEP_PIN"; // GUI translation constants private static final String TITLE = "step_pace_title"; private static final String DESCRIPTION = "step_pace_description"; private static final String DESCRIPTION_NATIVE = "step_pace_native_description"; private static final String NOTICE = "eac_forward_notice"; // GUI element IDs public static final String PIN_FIELD = "PACE_PIN_FIELD"; private final I18n langEac = I18n.getTranslation("eac"); private final I18n langPace = I18n.getTranslation("pace"); private final String pinType; private PACEMarkerType paceMarker; public PINStep(EACData eacData, boolean capturePin, PACEMarkerType paceMarker) { super(STEP_ID); this.pinType = langPace.translationForKey(eacData.passwordType); this.paceMarker = paceMarker; setTitle(langPace.translationForKey(TITLE, pinType)); setDescription(langPace.translationForKey(DESCRIPTION, pinType)); // create step elements if (capturePin) { addSoftwareElements(); } else { addTerminalElements(); } } private void addSoftwareElements() { setResetOnLoad(true); Text description = new Text(); description.setText(langPace.translationForKey(DESCRIPTION, pinType)); getInputInfoUnits().add(description); PasswordField pinInputField = new PasswordField(PIN_FIELD); pinInputField.setDescription(pinType); pinInputField.setMinLength(paceMarker.getMinLength()); pinInputField.setMaxLength(paceMarker.getMaxLength()); getInputInfoUnits().add(pinInputField); Text notice = new Text(); notice.setText(langEac.translationForKey(NOTICE, pinType)); getInputInfoUnits().add(notice); } private void addTerminalElements() { setInstantReturn(true); Text description = new Text(); description.setText(langPace.translationForKey(DESCRIPTION_NATIVE, pinType)); getInputInfoUnits().add(description); Text notice = new Text(); notice.setText(langEac.translationForKey(NOTICE, pinType)); getInputInfoUnits().add(notice); } }