Examples of JameicaException


Examples of de.willuhn.jameica.system.JameicaException

   * @see de.willuhn.jameica.reminder.ReminderStorageProvider#add(de.willuhn.jameica.reminder.Reminder)
   */
  public String add(Reminder reminder) throws Exception
  {
    if (reminder == null)
      throw new JameicaException("no reminder given");
   
    String uuid = this.createUUID();
   
    DBReminder r = (DBReminder) Settings.getDBService().createObject(DBReminder.class,null);
    r.setUUID(uuid);
View Full Code Here

Examples of de.willuhn.jameica.system.JameicaException

   * @see de.willuhn.jameica.reminder.ReminderStorageProvider#update(java.lang.String, de.willuhn.jameica.reminder.Reminder)
   */
  public void update(String uuid, Reminder reminder) throws Exception
  {
    if (StringUtils.trimToNull(uuid) == null)
      throw new JameicaException("no uuid given");
   
    if (reminder == null)
      throw new JameicaException("no reminder given");
   
    // Checken, ob wir den schon haben
    DBReminder r = this.getDBReminder(uuid);
    if (r == null)
      throw new ObjectNotFoundException("no reminder found for uuid: " + uuid);
View Full Code Here

Examples of de.willuhn.jameica.system.JameicaException

   * @see de.willuhn.jameica.reminder.ReminderStorageProvider#delete(java.lang.String)
   */
  public Reminder delete(String uuid) throws Exception
  {
    if (StringUtils.trimToNull(uuid) == null)
      throw new JameicaException("no uuid given");
   
    DBReminder r = this.getDBReminder(uuid);
    if (r == null)
      return null; // den gibts gar nicht
   
View Full Code Here

Examples of de.willuhn.jameica.system.JameicaException

   * @throws Exception
   */
  private DBReminder getDBReminder(String uuid) throws Exception
  {
    if (StringUtils.trimToNull(uuid) == null)
      throw new JameicaException("no uuid given");
   
    DBService service = Settings.getDBService();
    DBIterator i = service.createList(DBReminder.class);
    i.addFilter("uuid = ?",uuid);
    if (i.hasNext())
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.