Package com.dottydingo.hyperion.service.model

Examples of com.dottydingo.hyperion.service.model.BasePersistentHistoryEntry


        return result;
    }

    protected void saveHistory(AdminPersistenceContext context, P entity,HistoryAction historyAction)
    {
        BasePersistentHistoryEntry entry = historyEntryFactory.generateHistory(context,entity,historyAction);
        Dao<P,ID> dao = context.getEntityPlugin().getDao();
        dao.saveHistory(entry);
    }
View Full Code Here


        return result;
    }

    protected void saveHistory(PersistenceContext context, P entity,HistoryAction historyAction)
    {
        BasePersistentHistoryEntry entry = historyEntryFactory.generateHistory(context,entity,historyAction);
        Dao<P,ID> dao = context.getEntityPlugin().getDao();
        dao.saveHistory(entry);
    }
View Full Code Here

TOP

Related Classes of com.dottydingo.hyperion.service.model.BasePersistentHistoryEntry

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.