Examples of open()


Examples of de.willuhn.jameica.hbci.passports.ddv.SelectConfigDialog.open()

        else
        {
          SelectConfigDialog d = new SelectConfigDialog(SelectConfigDialog.POSITION_CENTER);
          try
          {
            config = (DDVConfig) d.open();
          }
          catch (OperationCanceledException oce)
          {
            throw oce;
          }
View Full Code Here

Examples of de.willuhn.jameica.hbci.passports.ddv.server.PassportHandleImpl.open()

            {
              CardTerminal terminal = terminals.get(0);
              String name = terminal.getName();
              temp.setPCSCName(name);
              PassportHandle handle = new PassportHandleImpl(temp);
              handle.open();
              handle.close(); // nein, nicht im finally, denn wenn das Oeffnen

              // Passport liess sich oeffnen und schliessen. Dann haben
              // wir den Kartenleser gefunden.
              monitor.log("  " + name + " " + i18n.tr("gefunden"));
View Full Code Here

Examples of de.willuhn.jameica.hbci.passports.pintan.PtSecMechDialog.open()

            }
          }
        }
       
        PtSecMechDialog ptd = new PtSecMechDialog(config,retData.toString());
        retData.replace(0,retData.length(),(String) ptd.open());
        return true;
      }
       
      // BUGZILLA 827
      case HBCICallback.NEED_PT_TANMEDIA:
View Full Code Here

Examples of de.willuhn.jameica.hbci.passports.pintan.SelectConfigDialog.open()

        else
        {
          SelectConfigDialog d = new SelectConfigDialog(SelectConfigDialog.POSITION_CENTER);
          try
          {
            config = (PinTanConfig) d.open();
          }
          catch (OperationCanceledException oce)
          {
            throw oce;
          }
View Full Code Here

Examples of de.willuhn.jameica.hbci.passports.pintan.TANDialog.open()

          Logger.debug("using regular tan dialog");
          dialog = new TANDialog(config);
        }
       
        dialog.setText(msg);
        retData.replace(0,retData.length(),(String)dialog.open());
        return true;
      }

      // BUGZILLA 200
      case HBCICallback.NEED_PT_SECMECH:
View Full Code Here

Examples of de.willuhn.jameica.hbci.passports.pintan.TanMediaDialog.open()

            return true;
          }
        }

        TanMediaDialog tmd = new TanMediaDialog(config);
        retData.replace(0,retData.length(),(String) tmd.open());
        return true;
      }
    }
   
    return false;
View Full Code Here

Examples of de.willuhn.jameica.hbci.passports.rdh.InsertKeyDialog.open()

     
      File f = new File(filename);
      if (!f.exists())
      {
        InsertKeyDialog kd = new InsertKeyDialog(f);
        Boolean b = (Boolean) kd.open();
        if (b == null || !b.booleanValue())
          throw new OperationCanceledException(i18n.tr("Schl�sseldiskette nicht eingelegt oder nicht lesbar"));
      }
     
      Logger.info("using passport file " + filename);
View Full Code Here

Examples of de.willuhn.jameica.hbci.passports.rdh.KeyPasswordLoadDialog.open()

    }
    lastTry = 0;

    // Wir haben nichts im Cache oder wurden explizit aufgefordert, nach dem Passwort zu fragen
    KeyPasswordLoadDialog dialog = new KeyPasswordLoadDialog(passport);
    String pw = (String) dialog.open();
    if (!forceAsk) // Nur cachen, wenn die Passwort-Abfrage nicht erzwungen war
      setCachedPIN(passport,pw);
    return pw;
  }
View Full Code Here

Examples of de.willuhn.jameica.hbci.passports.rdh.KeyPasswordSaveDialog.open()

      }

      case HBCICallback.NEED_PASSPHRASE_SAVE:
      {
        KeyPasswordSaveDialog dialog = new KeyPasswordSaveDialog(AbstractDialog.POSITION_CENTER,p);
        String password = (String) dialog.open();
        retData.replace(0,retData.length(),password);
        return true;
      }
    }
    return false;
View Full Code Here

Examples of de.willuhn.jameica.hbci.passports.rdh.SelectSizEntryDialog.open()

    switch (reason)
    {
      case HBCICallback.NEED_SIZENTRY_SELECT:
      {
        SelectSizEntryDialog e = new SelectSizEntryDialog(SelectSizEntryDialog.POSITION_CENTER,retData.toString());
        retData.replace(0,retData.length(),(String)e.open());
        return true;
      }

      case HBCICallback.NEED_PASSPHRASE_LOAD:
      {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.