diff options
| author | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2008-09-12 13:06:34 +0000 | 
|---|---|---|
| committer | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2008-09-12 13:06:34 +0000 | 
| commit | 3794536434fdbb06067eddcfd248898ce85f85a1 (patch) | |
| tree | 008c6cf0ae3c3ce508a36e692524345e55117b6f /BKUCommonGUI/src/test/java/at/gv | |
| parent | 76bb812a3254be530e403f8db8c01323a31b30c1 (diff) | |
| download | mocca-3794536434fdbb06067eddcfd248898ce85f85a1.tar.gz mocca-3794536434fdbb06067eddcfd248898ce85f85a1.tar.bz2 mocca-3794536434fdbb06067eddcfd248898ce85f85a1.zip | |
gui 0.2
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@34 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUCommonGUI/src/test/java/at/gv')
| -rw-r--r-- | BKUCommonGUI/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java | 276 | 
1 files changed, 138 insertions, 138 deletions
| diff --git a/BKUCommonGUI/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java b/BKUCommonGUI/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java index 4367f642..85f05435 100644 --- a/BKUCommonGUI/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java +++ b/BKUCommonGUI/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java @@ -1,19 +1,19 @@  /* -* Copyright 2008 Federal Chancellery Austria and -* Graz University of Technology -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -*     http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ + * Copyright 2008 Federal Chancellery Austria and + * Graz University of Technology + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + *     http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */  /*   * To change this template, choose Tools | Templates   * and open the template in the editor. @@ -35,137 +35,137 @@ import java.util.List;   */  public class BKUGUIWorker implements Runnable { -    BKUGUIFacade gui; +  BKUGUIFacade gui; -    public void init(BKUGUIFacade gui) { -        this.gui = gui; -    } +  public void init(BKUGUIFacade gui) { +    this.gui = gui; +  } -    @Override -    public void run() { +  @Override +  public void run() {  //        try { -            final PINSpec signPinSpec = new PINSpec(6, 10, "[0-9]", "Signatur-PIN"); - -             -            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, signListener, "sign", cancelListener, "cancel", null, "hashdata"); -                        } -                    }; -                    HashDataInput signedRef1 = new HashDataInput() { - -                        @Override -                        public InputStream getHashDataInput() { -                            return new ByteArrayInputStream("HashDataInput_001\n12345\n\tHello, world!\n12345\n\n12345\n6789\nblabla".getBytes()); -                        } - -                        @Override -                        public String getMimeType() { -                            return "text/plain"; -                        } - -                        @Override -                        public String getReferenceId() { -                            return "Reference-ref1-00000000000000000000001"; -                        } -                    }; -                    HashDataInput signedRef2 = new HashDataInput() { - -                        @Override -                        public InputStream getHashDataInput() { -                            return new ByteArrayInputStream("<xml>HashDataInput_002</xml>".getBytes()); -                        } - -                        @Override -                        public String getMimeType() { -                            return "text/xml"; -                        } - -                        @Override -                        public String getReferenceId() { -                            return "Reference-ref2-00000000000000000000002"; -                        } -                    }; -                    HashDataInput signedRef3 = new HashDataInput() { - -                        @Override -                        public InputStream getHashDataInput() { -                            return new ByteArrayInputStream("<xml>HashDataInput_003</xml>".getBytes()); -                        } - -                        @Override -                        public String getMimeType() { -                            return "text/xml"; -                        } - -                        @Override -                        public String getReferenceId() { -                            return "Reference-ref3-00000000000000000000003"; -                        } -                    }; -                    HashDataInput signedRef4 = new HashDataInput() { - -                        @Override -                        public InputStream getHashDataInput() { -                            return new ByteArrayInputStream("<xml>HashDataInput_004</xml>".getBytes()); -                        } - -                        @Override -                        public String getMimeType() { -                            return "text/xml"; -                        } - -                        @Override -                        public String getReferenceId() { -                            return "ref4"; -                        } -                    }; -                     -                    // -                    List<HashDataInput> signedRefs = new ArrayList(); -                    signedRefs.add(signedRef1); +    final PINSpec signPinSpec = new PINSpec(6, 10, "[0-9]", "Signatur-PIN"); + + +    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, signListener, "sign", cancelListener, "cancel", null, "hashdata"); +          } +        }; +        HashDataInput signedRef1 = new HashDataInput() { + +          @Override +          public InputStream getHashDataInput() { +            return new ByteArrayInputStream("oialfx HashDataInput_001\n12345\n\tHello, world!\n12345\n\n12345\n6789\nblabla".getBytes()); +          } + +          @Override +          public String getMimeType() { +            return "text/plain"; +          } + +          @Override +          public String getReferenceId() { +            return "Reference-ref1-00000000000000000000001"; +          } +        }; +        HashDataInput signedRef2 = new HashDataInput() { + +          @Override +          public InputStream getHashDataInput() { +            return new ByteArrayInputStream("<xml>HashDataInput_002</xml>".getBytes()); +          } + +          @Override +          public String getMimeType() { +            return "text/xml"; +          } + +          @Override +          public String getReferenceId() { +            return "Reference-ref2-00000000000000000000002"; +          } +        }; +        HashDataInput signedRef3 = new HashDataInput() { + +          @Override +          public InputStream getHashDataInput() { +            return new ByteArrayInputStream("<xml>HashDataInput_003</xml>".getBytes()); +          } + +          @Override +          public String getMimeType() { +            return "text/xml"; +          } + +          @Override +          public String getReferenceId() { +            return "Reference-ref3-00000000000000000000003"; +          } +        }; +        HashDataInput signedRef4 = new HashDataInput() { + +          @Override +          public InputStream getHashDataInput() { +            return new ByteArrayInputStream("<xml>HashDataInput_004</xml>".getBytes()); +          } + +          @Override +          public String getMimeType() { +            return "text/xml"; +          } + +          @Override +          public String getReferenceId() { +            return "ref4"; +          } +        }; + +        // +        List<HashDataInput> signedRefs = new ArrayList(); +        signedRefs.add(signedRef1);                      signedRefs.add(signedRef2);                      signedRefs.add(signedRef3);                      signedRefs.add(signedRef4);  //                    signedRefs = Collections.singletonList(signedRef1); -                    gui.showHashDataInputDialog(signedRefs, returnListener, "return"); -                } -            }; -            +        gui.showHashDataInputDialog(signedRefs, returnListener, "return"); +      } +    }; +  //        gui.showWelcomeDialog();  //  //        Thread.sleep(2000); -         +  //            gui.showInsertCardDialog(cancelListener, "cancel"); -             +  //            Thread.sleep(2000);  //              //            gui.showCardNotSupportedDialog(cancelListener, "cancel"); @@ -178,11 +178,11 @@ public class BKUGUIWorker implements Runnable {  //              //            Thread.sleep(2000);  // -             -            gui.showSignaturePINDialog(signPinSpec, signListener, "sign", cancelListener, "cancel", hashdataListener, "hashdata"); + +    gui.showSignaturePINDialog(signPinSpec, signListener, "sign", cancelListener, "cancel", hashdataListener, "hashdata");  //            Thread.sleep(2000); -             +  //            gui.showSignaturePINRetryDialog(signPinSpec, 2, signListener, "sign", cancelListener, "cancel", hashdataListener, "hashdata");  //  //            Thread.sleep(2000); @@ -192,13 +192,13 @@ public class BKUGUIWorker implements Runnable {  //            Thread.sleep(2000);  //              //            gui.showErrorDialog("Testfehler occured");  -             -             + +  //            gui.showTextPlainHashDataInput("hallo,\n welt!", "12345", null, "cancel", null, "save");  //            Thread.sleep(2000);  //        } catch (InterruptedException ex) {  //            ex.printStackTrace();  //        } -    } +  }  } | 
