Examples of SaldoMessage


Examples of de.willuhn.jameica.hbci.messaging.SaldoMessage

    konto.setSaldo(saldo.value.getDoubleValue());
    if (avail != null)
      konto.setSaldoAvailable(avail.getDoubleValue());

    konto.store();
    Application.getMessagingFactory().sendMessage(new SaldoMessage(konto));
    Logger.info("saldo fetched successfully");
  }
View Full Code Here

Examples of de.willuhn.jameica.hbci.messaging.SaldoMessage

      this.getDelButton().setEnabled(true);
      this.getSynchronizeOptions().setEnabled(!getKonto().hasFlag(Konto.FLAG_DISABLED));
      GUI.getStatusBar().setSuccessText(i18n.tr("Konto gespeichert."));

      // BUGZILLA 1356
      Application.getMessagingFactory().sendMessage(new SaldoMessage(getKonto()));
    }
    catch (ApplicationException e1)
    {
      GUI.getView().setErrorText(i18n.tr(e1.getLocalizedMessage()));
    }
View Full Code Here

Examples of de.willuhn.jameica.hbci.messaging.SaldoMessage

      Konto k = u.getKonto();
      if (k.hasFlag(Konto.FLAG_OFFLINE) && u.isNewObject()) // BUGZILLA 1232
      {
        k.setSaldo(su);
        k.store();
        Application.getMessagingFactory().sendMessage(new SaldoMessage(k));
      }
     
      u.setCustomerRef((String)getCustomerRef().getValue());
      u.setDatum(du);
      u.setPrimanota((String)getPrimanota().getValue());
View Full Code Here

Examples of de.willuhn.jameica.hbci.messaging.SaldoMessage

    /**
     * @see de.willuhn.jameica.messaging.MessageConsumer#handleMessage(de.willuhn.jameica.messaging.Message)
     */
    public void handleMessage(Message message) throws Exception
    {
      SaldoMessage msg = (SaldoMessage) message;
      GenericObject o = msg.getObject();
      if (!(o instanceof Konto))
        return;

      final Konto konto = (Konto) o;

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.