Examples of IBAN


Examples of de.jost_net.OBanToo.SEPA.IBAN

       
        String newBic = null;

        if (kto != null && iban == null) // Wenn wir eine Kontonummer und noch keine IBAN haben, dann errechnen
        {
          IBAN newIban = HBCIProperties.getIBAN(blz,kto);
          newBic = newIban.getBIC();
          a.setIban(newIban.getIBAN());
        }
       
        if (bic == null) // Wenn wir noch keine BIC haben, dann errechnen
        {
          if (newBic == null) // nur wenn sie nicht schon von obantoo ermittelt wurde
View Full Code Here

Examples of de.jost_net.OBanToo.SEPA.IBAN

     
      String bic = null;
     
      if (HBCI.COMPLETE_IBAN && StringUtils.trimToNull(address.getIban()) == null)
      {
        IBAN iban = HBCIProperties.getIBAN(blz,konto);
        bic = iban.getBIC();
        address.setIban(iban.getIBAN());
        haveChanged = true;
      }
     
      if (StringUtils.trimToNull(address.getBic()) == null)
      {
View Full Code Here

Examples of de.jost_net.OBanToo.SEPA.IBAN

       
        if (blz != null && blz.length() == HBCIProperties.HBCI_BLZ_LENGTH)
        {
          if (HBCI.COMPLETE_IBAN && kto != null && iban == null)
          {
            IBAN newIban = HBCIProperties.getIBAN(blz,kto);
            getIban().setValue(newIban.getIBAN());
            newBic = newIban.getBIC();
            txt = i18n.tr("IBAN/BIC vervollst�ndigt. Zum �bernehmen \"Speichern\" dr�cken.");
          }
         
          if (bic == null)
          {
View Full Code Here

Examples of de.jost_net.OBanToo.SEPA.IBAN

     
      if (ok)
      {
        try
        {
          IBAN newIban = HBCIProperties.getIBAN(blz,kto);
          iban = newIban.getIBAN();
          bic = newIban.getBIC();
         
          IBANCode code = newIban.getCode();
          if (code != null && code == IBANCode.PRUEFZIFFERNMETHODEFEHLT)
            getMessage().setValue("Pr�fziffer konnte nicht verifiziert werden. Bitte pr�fen Sie die IBAN");
          else
            getMessage().setValue("");
        }
View Full Code Here

Examples of de.jost_net.OBanToo.SEPA.IBAN

        {
          String newBic = null;
         
          if (HBCI.COMPLETE_IBAN && kto != null && iban == null)
          {
            IBAN newIban = HBCIProperties.getIBAN(blz,kto);
            newBic = newIban.getBIC();
            getIban().setValue(newIban.getIBAN());
          }
         
          if (bic == null)
          {
            if (newBic == null) // nur wenn sie nicht schon von obantoo ermittelt wurde
View Full Code Here

Examples of de.jost_net.OBanToo.SEPA.IBAN

      return;
   
    try
    {
      // 1. IBAN sofort checken
      IBAN iban = HBCIProperties.getIBAN(s);
     
      if (iban == null) // Keine IBAN
        return;

      if (this.bicInput == null)
        return;
     
      // 2. Wenn wir ein BICInput haben, dann gleich noch die BIC ermitteln und
      // vervollstaendigen
      String bic = StringUtils.trimToNull(iban.getBIC());
      if (bic == null)
        return;

      this.bicInput.setValue(bic);
    }
View Full Code Here

Examples of de.jost_net.OBanToo.SEPA.IBAN

    if (!de.willuhn.jameica.hbci.Settings.getKontoCheck())
      return null;
   
    try
    {
      return new IBAN(iban);
    }
    catch (SEPAException se)
    {
      Fehler f = se.getFehler();
      if (f != null && ignoredErrors.contains(f))
View Full Code Here

Examples of de.jost_net.OBanToo.SEPA.IBAN

   */
  public final static IBAN getIBAN(String blz, String konto) throws ApplicationException
  {
    try
    {
      IBAN iban = new IBAN(konto, blz, "DE");
     
      // R�ckgabe-Code checken
      IBANCode code = iban.getCode();
      if (code == null || code == IBANCode.GUELTIG)
        return iban;
     
      // Tolerieren wir ebenfalls
      if (code == IBANCode.KONTONUMMERERSETZT ||
View Full Code Here

Examples of de.jost_net.OBanToo.SEPA.IBAN

      qm.setData(null);
      return;
    }
    try
    {
      IBAN iban=HBCIProperties.getIBAN(s[0],s[1]);
      String[] result=new String[]{iban.getIBAN(), iban.getBIC()};
      qm.setData(result);
    }
    catch(Exception e)
    {
      qm.setData(e);
View Full Code Here

Examples of org.iban4j.Iban

      fillAccountNumber();
      fillBankCode();
      fillBranchCode();
      nationalCheckDigit = nationalCheckDigit(nationalCheckDigit);

      Iban iban = new Iban.Builder()
          .countryCode(countryCode)
          .bankCode(bankCode)
          .branchCode(branchCode)
          .nationalCheckDigit(nationalCheckDigit)
          .accountNumber(accountNumber)
          .build();

      String identificationNumber = iban.getIdentificationNumber();
      String checkDigit = iban.getCheckDigit();
      String accountType = iban.getAccountType();
      String bban = iban.getBban();
      String ownerAccountType = iban.getOwnerAccountType();
      String ibanNumber = iban.toString();

      return new IBAN(accountNumber, identificationNumber, branchCode, checkDigit,
          accountType, bankCode, bban, countryCode.getName(), nationalCheckDigit,
          ownerAccountType, ibanNumber);
    } catch (IllegalFormatCodePointException e) {
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.