/* * 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 at.gv.egiz.smcc.PinInfo; import at.gv.egiz.stal.HashDataInput; import at.gv.egiz.stal.impl.ByteArrayHashDataInput; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.ArrayList; import java.util.List; /** * * @author clemens */ public class BKUGUIWorker implements Runnable { BKUGUIFacade gui; public void init(BKUGUIFacade gui) { this.gui = gui; } @Override public void run() { try { final PinInfo signPinSpec = new SimplePinInfo(6, 10, "[0-9]", "Test-PIN", (byte) 0x81, null, PinInfo.UNKNOWN_RETRIES); // final PinInfo cardPinSpec = new SimplePinInfo(4, 4, "[0-9]", "Test-PIN", (byte) 0x01, null, PinInfo.UNKNOWN_RETRIES); final ActionListener cancelListener = new ActionListener() { public void actionPerformed(ActionEvent e) { System.out.println("CANCEL EVENT OCCURED: " + e); } }; // ActionListener okListener = new ActionListener() { // // @Override // public void actionPerformed(ActionEvent e) { // System.out.println("OK EVENT OCCURED: " + e); // } // }; final ActionListener signListener = new ActionListener() { public void actionPerformed(ActionEvent e) { System.out.println("SIGN EVENT OCCURED: " + e); } }; ActionListener hashdataListener = new ActionListener() { public void actionPerformed(ActionEvent e) { System.out.println("HASHDATA EVENT OCCURED: " + e); ActionListener returnListener = new ActionListener() { @Override public void actionPerformed(ActionEvent e) { gui.showSignaturePINDialog(signPinSpec, -1, signListener, "sign", cancelListener, "cancel", null, "hashdata"); } }; HashDataInput signedRef1 = new ByteArrayHashDataInput( "Ich bin ein einfacher Text mit Umlauten: öäüßéç@€\n123\n456\n\tHello, world!\n\nlkjsd\nnksdjf".getBytes(), "ref-id-0000000000000000000000001", "text/plain", "UTF-8", "file.txt"); // HashDataInput signedRef2 = new ByteArrayHashDataInput( // "HashDataInput_002".getBytes(), // "ref-id-000000002", // "application/xhtml+xml", // "UTF-8", // "file.xhtml"); // // HashDataInput signedRef3 = new ByteArrayHashDataInput( // "HashDataInput_003".getBytes(), // "ref-id-000000003", // "application/xhtml+xml", // "UTF-8", // "file2.xhtml"); // // HashDataInput signedRef4 = new ByteArrayHashDataInput( // "HashDataInput_004".getBytes(), // "ref-id-000000004", // "text/xml", // "UTF-8", // "file.xml"); List signedRefs = new ArrayList(); signedRefs.add(signedRef1); // signedRefs.add(signedRef2); // signedRefs.add(signedRef3); // signedRefs.add(signedRef4); // signedRefs.add(signedRef4); // signedRefs.add(signedRef4); // signedRefs.add(signedRef4); // signedRefs.add(signedRef4); // signedRefs = Collections.singletonList(signedRef1); gui.showSecureViewer(signedRefs, returnListener, "return"); } }; // gui.showWelcomeDialog(); // // Thread.sleep(2000); // // gui.showWaitDialog(null); // // Thread.sleep(1000); // // gui.showWaitDialog("test"); // // Thread.sleep(1000); // // // gui.showInsertCardDialog(cancelListener, "cancel"); // // Thread.sleep(2000); // // gui.showCardNotSupportedDialog(cancelListener, "cancel"); // // Thread.sleep(2000); // // PINSpec cardPinSpec = new PINSpec(4, 4, "[0-9]", "Karten-PIN"); // // gui.showCardPINDialog(cardPinSpec, okListener, "ok", cancelListener, "cancel"); // // Thread.sleep(2000); // // gui.showSignaturePINDialog(signPinSpec, -1, signListener, "sign", cancelListener, "cancel", hashdataListener, "hashdata"); gui.showSignatureDataDialog(signPinSpec, signListener, "sign", cancelListener, "cancel", hashdataListener, "hashdata"); Thread.sleep(2000); gui.showEnterPINDirect(signPinSpec, -1); // // Thread.sleep(4000); // // gui.showErrorDialog(BKUGUIFacade.ERR_NO_PCSC, null, null, null); // gui.showSignaturePINRetryDialog(signPinSpec, 2, signListener, "sign", cancelListener, "cancel", hashdataListener, "hashdata"); // // Thread.sleep(2000); // // gui.showErrorDialog(BKUGUIFacade.ERR_UNKNOWN, new Object[] {"Testfehler"}, null, null); // // Thread.sleep(2000); // // gui.showErrorDialog("error.test", new Object[] {"Testfehler", "noch ein TestFehler"}); // // Thread.sleep(2000); // // gui.showErrorDialog("error.no.hashdata", null); // // Thread.sleep(2000); // // gui.showErrorDialog(BKUGUIFacade.ERR_UNKNOWN, new Object[] {"Testfehler"}); // // Thread.sleep(2000); // // gui.showErrorDialog("error.unknown", null); // gui.showTextPlainHashDataInput("hallo,\n welt!", "12345", null, "cancel", null, "save"); // gui.showTextPlainHashDataInput("hallo,\n welt!", "12345", null, "cancel", null, "save"); // Thread.sleep(2000); } catch (InterruptedException ex) { ex.printStackTrace(); } } }