Package de.iritgo.aktera.journal.entity

Examples of de.iritgo.aktera.journal.entity.JournalEntry


  @Override
  public Map<String, Object> getJournalEntryById(Integer id)
  {
    Map<String, Object> entry = new HashMap<String, Object>();

    JournalEntry journalEntry = journalDAO.getById(id);

    addJournalEntryAttributes(journalEntry, entry);

    if (journalEntry.getExtendedInfoType() != null)
    {
      JournalExtender je = journalExtenders.get(journalEntry.getExtendedInfoType());

      if (je != null)
      {
        je.addJournalEntryAttributes(entry);
      }
View Full Code Here


  }

  @Override
  public void deleteJournalEntry(int journalEntryId)
  {
    JournalEntry journalEntry = journalDAO.getById(journalEntryId);

    deleteJournalEntry(journalEntry);
  }
View Full Code Here

TOP

Related Classes of de.iritgo.aktera.journal.entity.JournalEntry

Copyright © 2018 www.massapicom. 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.