Examples of HBCISepaDauerauftragListJob


Examples of de.willuhn.jameica.hbci.server.hbci.HBCISepaDauerauftragListJob

   * @see de.willuhn.jameica.hbci.synchronize.hbci.HBCISynchronizeJob#createHBCIJobs()
   */
  public AbstractHBCIJob[] createHBCIJobs() throws RemoteException, ApplicationException
  {
    // Den brauchen wir, damit das Loeschen funktioniert.
    HBCISepaDauerauftragListJob list = new HBCISepaDauerauftragListJob(this.getKonto());
    list.setExclusive(true);
   
    // Das eigentliche Loeschen
    Date date = (Date) this.getContext(CTX_DATE);
    HBCISepaDauerauftragDeleteJob delete = new HBCISepaDauerauftragDeleteJob((SepaDauerauftrag)getContext(CTX_ENTITY),date);
   
View Full Code Here

Examples of de.willuhn.jameica.hbci.server.hbci.HBCISepaDauerauftragListJob

  /**
   * @see de.willuhn.jameica.hbci.synchronize.hbci.HBCISynchronizeJob#createHBCIJobs()
   */
  public AbstractHBCIJob[] createHBCIJobs() throws RemoteException, ApplicationException
  {
    return new AbstractHBCIJob[]{new HBCISepaDauerauftragListJob((Konto)this.getContext(CTX_ENTITY))};
  }
View Full Code Here

Examples of de.willuhn.jameica.hbci.server.hbci.HBCISepaDauerauftragListJob

   * @see de.willuhn.jameica.hbci.synchronize.hbci.HBCISynchronizeJob#createHBCIJobs()
   */
  public AbstractHBCIJob[] createHBCIJobs() throws RemoteException, ApplicationException
  {
    // Den brauchen wir, damit das Aendern funktioniert.
    HBCISepaDauerauftragListJob listBefore = new HBCISepaDauerauftragListJob(this.getKonto());
    listBefore.setExclusive(true);
   
    // Das eigentliche Speichern/Aendern
    HBCISepaDauerauftragStoreJob store = new HBCISepaDauerauftragStoreJob((SepaDauerauftrag)getContext(CTX_ENTITY));

    // Und danach nochmal, um die Aenderungen gleich abzurufen
    HBCISepaDauerauftragListJob listAfter = new HBCISepaDauerauftragListJob(this.getKonto());
    listAfter.setExclusive(true);

    return new AbstractHBCIJob[] {listBefore,store,listAfter};
  }
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.