summaryrefslogtreecommitdiff
path: root/BKUGuiExt/src
diff options
context:
space:
mode:
authortkellner <tkellner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2012-04-02 16:38:53 +0000
committertkellner <tkellner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2012-04-02 16:38:53 +0000
commit50f7be0c55da14e1b73c39aa18db9808949387bc (patch)
treed43e7d3dec5f79cef7ac876f796ad7092f3d4ae6 /BKUGuiExt/src
parent5b9e4b3e9ed531689700b2e0f75907fd9281a042 (diff)
downloadmocca-50f7be0c55da14e1b73c39aa18db9808949387bc.tar.gz
mocca-50f7be0c55da14e1b73c39aa18db9808949387bc.tar.bz2
mocca-50f7be0c55da14e1b73c39aa18db9808949387bc.zip
Person Identity Link Extension:
for Webstart and Applet version git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@1040 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUGuiExt/src')
-rw-r--r--BKUGuiExt/src/main/java/at/gv/egiz/bku/gui/PersonIdentityLinkGUI.java242
-rw-r--r--BKUGuiExt/src/main/java/at/gv/egiz/bku/gui/PersonIdentityLinkGUIFacade.java54
-rw-r--r--BKUGuiExt/src/main/resources/at/gv/egiz/bku/gui/ActivationMessages.properties7
-rw-r--r--BKUGuiExt/src/main/resources/at/gv/egiz/bku/gui/ActivationMessages_de.properties7
4 files changed, 310 insertions, 0 deletions
diff --git a/BKUGuiExt/src/main/java/at/gv/egiz/bku/gui/PersonIdentityLinkGUI.java b/BKUGuiExt/src/main/java/at/gv/egiz/bku/gui/PersonIdentityLinkGUI.java
new file mode 100644
index 00000000..a17a9a0f
--- /dev/null
+++ b/BKUGuiExt/src/main/java/at/gv/egiz/bku/gui/PersonIdentityLinkGUI.java
@@ -0,0 +1,242 @@
+/*
+ * Copyright 2011 by Graz University of Technology, Austria
+ * MOCCA has been developed by the E-Government Innovation Center EGIZ, a joint
+ * initiative of the Federal Chancellery Austria and Graz University of Technology.
+ *
+ * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by
+ * the European Commission - subsequent versions of the EUPL (the "Licence");
+ * You may not use this work except in compliance with the Licence.
+ * You may obtain a copy of the Licence at:
+ * http://www.osor.eu/eupl/
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the Licence is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the Licence for the specific language governing permissions and
+ * limitations under the Licence.
+ *
+ * This product combines work with different licenses. See the "NOTICE" text
+ * file for details on the various modules and licenses.
+ * The "NOTICE" text file is part of the distribution. Any derivative works
+ * that you distribute must include a readable copy of the "NOTICE" text file.
+ */
+
+package at.gv.egiz.bku.gui;
+
+import java.awt.Container;
+import java.awt.event.ActionListener;
+import java.net.URL;
+import java.text.MessageFormat;
+import java.util.Locale;
+
+import javax.swing.GroupLayout;
+import javax.swing.GroupLayout.Alignment;
+import javax.swing.JButton;
+import javax.swing.JLabel;
+import javax.swing.LayoutStyle;
+import javax.swing.LayoutStyle.ComponentPlacement;
+import javax.swing.SwingUtilities;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import at.gv.egiz.bku.gui.viewer.FontProvider;
+
+/**
+ * Implements GUI for the person identity link informations
+ *
+ * @author Andreas Fitzek <andreas.fitzek@iaik.tugraz.at>
+ */
+public class PersonIdentityLinkGUI extends CardMgmtGUI implements
+ PersonIdentityLinkGUIFacade {
+
+ private final Logger log = LoggerFactory
+ .getLogger(PersonIdentityLinkGUI.class);
+
+ protected JLabel mgmtLabel;
+
+ protected JLabel firstNameLabel_description;
+ protected JLabel lastNameLabel_description;
+ protected JLabel birthdateLabel_description;
+
+ protected JLabel firstNameLabel;
+ protected JLabel lastNameLabel;
+ protected JLabel birthdateLabel;
+
+ protected JButton activateButton;
+
+ public PersonIdentityLinkGUI(Container contentPane, Locale locale, URL backgroundImgURL, FontProvider fontProvider,
+ HelpListener helpListener, SwitchFocusListener switchFocusListener) {
+ super(contentPane, locale, Style.advanced, backgroundImgURL, fontProvider,
+ helpListener, switchFocusListener);
+ // TODO Auto-generated constructor stub
+ this.activateButton = new JButton();
+ }
+
+ @Override
+ public void showPersonIdentityLinkInformationDialog(
+ final ActionListener activateListener,
+ final String actionCommand,
+ final String firstName,
+ final String surName,
+ final String birthdate) {
+ log.debug("Scheduling Person Identity Link dialog.");
+
+ SwingUtilities.invokeLater(new Runnable() {
+
+ @Override
+ public void run() {
+ log.debug("Show Person Identity Link dialog.");
+
+ mainPanel.removeAll();
+ buttonPanel.removeAll();
+
+ mgmtLabel = new JLabel();
+ mgmtLabel.setFont(mgmtLabel.getFont().deriveFont(
+ mgmtLabel.getFont().getStyle() & ~java.awt.Font.BOLD));
+
+ if (renderHeaderPanel) {
+ titleLabel.setText(getMessage(PersonIdentityLinkGUIFacade.TITLE_IDENITY));
+ mgmtLabel.setText(getMessage(PersonIdentityLinkGUIFacade.MESSAGE_IDENITY));
+ } else {
+ mgmtLabel.setText(getMessage(PersonIdentityLinkGUIFacade.TITLE_IDENITY));
+ }
+
+ activateButton.setFont(activateButton.getFont().deriveFont(
+ activateButton.getFont().getStyle()
+ & ~java.awt.Font.BOLD));
+ activateButton.addActionListener(activateListener);
+ activateButton.setActionCommand(actionCommand);
+
+ activateButton.setText(getMessage(PersonIdentityLinkGUIFacade.IDENTIFY_BUTTON));
+
+ firstNameLabel_description = new JLabel();
+ firstNameLabel_description.setText(getMessage(PersonIdentityLinkGUIFacade.FIRSTNAME));
+ lastNameLabel_description = new JLabel();
+ lastNameLabel_description.setText(getMessage(PersonIdentityLinkGUIFacade.LASTNAME));
+
+ birthdateLabel_description = new JLabel();
+ birthdateLabel_description.setText(getMessage(PersonIdentityLinkGUIFacade.DATEOFBIRTH));
+
+
+ firstNameLabel = new JLabel();
+ firstNameLabel.setText(firstName);
+
+ firstNameLabel.setFont(firstNameLabel.getFont().deriveFont(
+ firstNameLabel.getFont().getStyle() & ~java.awt.Font.BOLD));
+
+ lastNameLabel = new JLabel();
+ lastNameLabel.setText(surName);
+
+ lastNameLabel.setFont(lastNameLabel.getFont().deriveFont(
+ lastNameLabel.getFont().getStyle() & ~java.awt.Font.BOLD));
+
+ birthdateLabel = new JLabel();
+ birthdateLabel.setText(birthdate);
+
+ birthdateLabel.setFont(birthdateLabel.getFont().deriveFont(
+ birthdateLabel.getFont().getStyle() & ~java.awt.Font.BOLD));
+
+ updateMethodToRunAtResize("at.gv.egiz.bku.gui.PersonIdentityLinkGUI", "renderContentAndButtons");
+
+ renderContentAndButtons();
+
+ cancelButton.requestFocus();
+ contentPanel.validate();
+
+ if(windowCloseAdapter != null)
+ {
+ windowCloseAdapter.registerListener(activateListener, actionCommand);
+ }
+
+
+
+ resize();
+ }
+
+ });
+ }
+
+ public void renderContentAndButtons() {
+
+ // It is necessary to remove old components in order to ensure
+ // the correct rendering of the status table and the button panel
+ mainPanel.removeAll();
+ buttonPanel.removeAll();
+
+ //JScrollPane pinStatusScrollPane = new JScrollPane(pinStatusTable);
+
+ GroupLayout mainPanelLayout = new GroupLayout(mainPanel);
+ mainPanel.setLayout(mainPanelLayout);
+
+ GroupLayout.SequentialGroup messageHorizontal = mainPanelLayout
+ .createSequentialGroup().addComponent(mgmtLabel);
+ GroupLayout.Group messageVertical = mainPanelLayout
+ .createParallelGroup(GroupLayout.Alignment.LEADING)
+ .addComponent(mgmtLabel);
+
+ if (!renderHeaderPanel) {
+
+
+ messageHorizontal.addPreferredGap(
+ LayoutStyle.ComponentPlacement.UNRELATED, 0,
+ Short.MAX_VALUE).addComponent(switchFocusDummyLabel)
+ .addComponent(helpLabel);
+ messageVertical.addComponent(switchFocusDummyLabel).addComponent(
+ helpLabel);
+ }
+
+ mainPanelLayout.setHorizontalGroup(
+ mainPanelLayout.createParallelGroup(Alignment.LEADING)
+ .addGroup(mainPanelLayout.createSequentialGroup()
+ //.addContainerGap()
+ .addGroup(mainPanelLayout.createParallelGroup(Alignment.LEADING)
+ .addGroup(messageHorizontal)
+ .addGroup(mainPanelLayout.createSequentialGroup()
+ .addGroup(mainPanelLayout.createParallelGroup(Alignment.LEADING)
+ .addComponent(firstNameLabel_description)
+ .addComponent(lastNameLabel_description)
+ .addComponent(birthdateLabel_description))
+ .addPreferredGap(ComponentPlacement.RELATED)
+ .addGroup(mainPanelLayout.createParallelGroup(Alignment.LEADING)
+ .addComponent(firstNameLabel)
+ .addComponent(lastNameLabel)
+ .addComponent(birthdateLabel)))))
+ );
+ mainPanelLayout.setVerticalGroup(
+ mainPanelLayout.createParallelGroup(Alignment.LEADING)
+ .addGroup(mainPanelLayout.createSequentialGroup()
+ //.addContainerGap()
+ .addGroup(messageVertical)
+ .addPreferredGap(ComponentPlacement.UNRELATED)
+ .addGroup(mainPanelLayout.createParallelGroup(Alignment.BASELINE)
+ .addComponent(firstNameLabel_description)
+ .addComponent(firstNameLabel))
+ //.addPreferredGap(ComponentPlacement.UNRELATED)
+ .addGroup(mainPanelLayout.createParallelGroup(Alignment.BASELINE)
+ .addComponent(lastNameLabel_description)
+ .addComponent(lastNameLabel))
+ //.addPreferredGap(ComponentPlacement.UNRELATED)
+ .addGroup(mainPanelLayout.createParallelGroup(Alignment.BASELINE)
+ .addComponent(birthdateLabel_description)
+ .addComponent(birthdateLabel)))
+ );
+
+ GroupLayout buttonPanelLayout = new GroupLayout(buttonPanel);
+ buttonPanel.setLayout(buttonPanelLayout);
+
+ GroupLayout.SequentialGroup buttonHorizontal = buttonPanelLayout
+ .createSequentialGroup().addContainerGap(
+ GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
+ .addComponent(activateButton, GroupLayout.PREFERRED_SIZE,
+ buttonSize, GroupLayout.PREFERRED_SIZE);
+
+ GroupLayout.Group buttonVertical = buttonPanelLayout
+ .createParallelGroup(GroupLayout.Alignment.BASELINE)
+ .addComponent(activateButton);
+
+ buttonPanelLayout.setHorizontalGroup(buttonHorizontal);
+ buttonPanelLayout.setVerticalGroup(buttonVertical);
+
+ }
+}
diff --git a/BKUGuiExt/src/main/java/at/gv/egiz/bku/gui/PersonIdentityLinkGUIFacade.java b/BKUGuiExt/src/main/java/at/gv/egiz/bku/gui/PersonIdentityLinkGUIFacade.java
new file mode 100644
index 00000000..0c565c3a
--- /dev/null
+++ b/BKUGuiExt/src/main/java/at/gv/egiz/bku/gui/PersonIdentityLinkGUIFacade.java
@@ -0,0 +1,54 @@
+/*
+ * Copyright 2011 by Graz University of Technology, Austria
+ * MOCCA has been developed by the E-Government Innovation Center EGIZ, a joint
+ * initiative of the Federal Chancellery Austria and Graz University of Technology.
+ *
+ * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by
+ * the European Commission - subsequent versions of the EUPL (the "Licence");
+ * You may not use this work except in compliance with the Licence.
+ * You may obtain a copy of the Licence at:
+ * http://www.osor.eu/eupl/
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the Licence is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the Licence for the specific language governing permissions and
+ * limitations under the Licence.
+ *
+ * This product combines work with different licenses. See the "NOTICE" text
+ * file for details on the various modules and licenses.
+ * The "NOTICE" text file is part of the distribution. Any derivative works
+ * that you distribute must include a readable copy of the "NOTICE" text file.
+ */
+
+
+package at.gv.egiz.bku.gui;
+
+import java.awt.event.ActionListener;
+
+/**
+ *
+ * @author Andreas Fitzek <andreas.fitzek@iaik.tugraz.at>
+ */
+public interface PersonIdentityLinkGUIFacade extends BKUGUIFacade {
+
+ public static final String FIRSTNAME = "identity.firstname";
+ public static final String DATEOFBIRTH = "identity.dateofbirth";
+ public static final String LASTNAME = "identity.lastname";
+ public static final String TITLE_IDENITY = "title.identity";
+
+ public static final String MESSAGE_IDENITY = "identity.msg";
+ public static final String IDENTIFY_BUTTON = "identity.button";
+ /**
+ * Currently dummy method to display anything ...
+ *
+ * @param firstName
+ * @param surName
+ */
+ public void showPersonIdentityLinkInformationDialog(
+ ActionListener activateListener,
+ String actionCommand,
+ String firstName,
+ String surName,
+ String birthdate);
+}
diff --git a/BKUGuiExt/src/main/resources/at/gv/egiz/bku/gui/ActivationMessages.properties b/BKUGuiExt/src/main/resources/at/gv/egiz/bku/gui/ActivationMessages.properties
index 40c666ed..8da9a06c 100644
--- a/BKUGuiExt/src/main/resources/at/gv/egiz/bku/gui/ActivationMessages.properties
+++ b/BKUGuiExt/src/main/resources/at/gv/egiz/bku/gui/ActivationMessages.properties
@@ -28,9 +28,16 @@ title.unblock.pin=<html>Unblock PIN</html>
title.activate.success=<html>Success</html>
title.change.success=<html>Success</html>
title.unblock.success=<html>Success</html>
+title.identity=<html>Person Identity Link</html>
# removed message.* prefix to reuse keys as help keys
pin.mgmt=<html>{0} PINs available
+identity.msg=<html>The person identity link
+identity.button=<html>Cancel</html>
+identity.firstname=<html>Firstname</html>
+identity.dateofbirth=<html>Date Of Birth</html>
+identity.lastname=<html>Lastname</html>
+
# software pin-entry messages
activate.pin=<html>Enter and confirm {0}
change.pin=<html>Enter and confirm {0}
diff --git a/BKUGuiExt/src/main/resources/at/gv/egiz/bku/gui/ActivationMessages_de.properties b/BKUGuiExt/src/main/resources/at/gv/egiz/bku/gui/ActivationMessages_de.properties
index f3491080..1935d31b 100644
--- a/BKUGuiExt/src/main/resources/at/gv/egiz/bku/gui/ActivationMessages_de.properties
+++ b/BKUGuiExt/src/main/resources/at/gv/egiz/bku/gui/ActivationMessages_de.properties
@@ -28,6 +28,13 @@ title.unblock.pin=<html>PIN entsperren</html>
title.activate.success=<html>Erfolg</html>
title.change.success=<html>Erfolg</html>
title.unblock.success=<html>Erfolg</html>
+title.identity=<html>Personenbindung</html>
+
+identity.msg=<html>Informationen zur Personenbindung
+identity.button=<html>Abbrechen</html>
+identity.firstname=<html>Vorname</html>
+identity.dateofbirth=<html>Geburtsdatum</html>
+identity.lastname=<html>Nachname</html>
# removed message.* prefix to reuse keys as help keys
pin.mgmt=<html>Die Karte verf\u00FCgt \u00FCber {0} PINs</html>