Package de.willuhn.jameica.hbci.rmi

Examples of de.willuhn.jameica.hbci.rmi.DBReminder.store()


    String uuid = this.createUUID();
   
    DBReminder r = (DBReminder) Settings.getDBService().createObject(DBReminder.class,null);
    r.setUUID(uuid);
    r.setReminder(reminder);
    r.store();
   
    return uuid;
  }

View Full Code Here


    if (r == null)
      throw new ObjectNotFoundException("no reminder found for uuid: " + uuid);
   
    // Daten uebernehmen und speichern
    r.setReminder(reminder);
    r.store();
  }

  /**
   * @see de.willuhn.jameica.reminder.ReminderStorageProvider#delete(java.lang.String)
   */
 
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.