Examples of transactionBegin()


Examples of de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung.transactionBegin()

    {
      t = this.getTransfer();
      if (t.ausgefuehrt()) // BUGZILLA 1197
        return true;
     
      t.transactionBegin();

      Double d = (Double) getBetrag().getValue();
      t.setBetrag(d == null ? Double.NaN : d.doubleValue());
     
      t.setKonto((Konto)getKontoAuswahl().getValue());
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.BaseUeberweisung.transactionBegin()

      bu.setTermin(termin);
     
      TextSchluessel s = (TextSchluessel) getTextSchluessel().getValue();
      bu.setTextSchluessel(s == null ? null : s.getCode());

      bu.transactionBegin();
      if (super.handleStore())
      {
        // Reminder-Intervall speichern
        ReminderIntervalInput input = this.getReminderInterval();
        if (input.containsInterval())
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.HibiscusDBObject.transactionBegin()

    HibiscusDBObject order = (HibiscusDBObject) template.duplicate();
    String hostname        = Application.getCallback().getHostname();

    try
    {
      order.transactionBegin();

      ((Terminable)order).setTermin(termin);      // Ziel-Datum uebernehmen
      order.store();                              // speichern, noetig, weil wir die ID brauchen

      // Meta-Daten speichern
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.HibiscusTransfer.transactionBegin()

  {
    HibiscusTransfer t = null;
    try
    {
      t = this.getTransfer();
      t.transactionBegin();

      Double d = (Double) getBetrag().getValue();
      t.setBetrag(d == null ? Double.NaN : d.doubleValue());
     
      t.setKonto((Konto)getKontoAuswahl().getValue());
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Konto.transactionBegin()

      if (!Application.getCallback().askUser(s))
        return;

      // Konto zuruecksetzen
      k.transactionBegin();
      k.reset();
      k.setFlags(k.getFlags() | Konto.FLAG_DISABLED);
      k.store();

      Logger.info("disabled account id: " + k.getID());
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.SammelTransfer.transactionBegin()

    try
    {
      t = this.getTransfer();
      if (t.ausgefuehrt()) // BUGZILLA 1197
        return true;
      t.transactionBegin();
     
      t.setKonto((Konto)getKontoAuswahl().getValue());
      t.setBezeichnung((String)getName().getValue());
      t.setTermin((Date)getTermin().getValue());
      t.store();
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.SepaDauerauftrag.transactionBegin()

   
    try
    {
      t = this.getTransfer();
     
      t.transactionBegin();

      Double d = (Double) getBetrag().getValue();
      t.setBetrag(d == null ? Double.NaN : d.doubleValue());
     
      t.setKonto((Konto)getKontoAuswahl().getValue());
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.SepaLastschrift.transactionBegin()

    {
      t = this.getTransfer();
      if (t.ausgefuehrt())
        return true;
     
      t.transactionBegin();

      Double d = (Double) getBetrag().getValue();
      t.setBetrag(d == null ? Double.NaN : d.doubleValue());
     
      Konto k = (Konto)getKontoAuswahl().getValue();
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.SepaSammelLastBuchung.transactionBegin()

      t = s.getSammelTransfer();
     
      if (t.ausgefuehrt())
        return true;
     
      s.transactionBegin();
     
      s.setCreditorId((String) getCreditorId().getValue());
      s.setMandateId((String) getMandateId().getValue());
      s.setSignatureDate((Date) getSignatureDate().getValue());
     
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.SepaSammelLastschrift.transactionBegin()

    SepaSammelLastschrift l = null;
    try
    {
      l = (SepaSammelLastschrift) getService().createObject(SepaSammelLastschrift.class,null);
     
      l.transactionBegin();
      l.setBezeichnung(this.getBezeichnung());
      l.setKonto(this.getKonto());
      l.setTermin(new Date());
      l.setSequenceType(getSequenceType());
      l.setTargetDate(getTargetDate());
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.