Package com.rupertjones.globalcron.common.domain

Examples of com.rupertjones.globalcron.common.domain.AuditLogType


    @Override
    @SuppressWarnings("unchecked")
    public void onPostInsert(PostInsertEvent event) {
        Auditable entity = (Auditable) event.getEntity();
        AuditLogType type = entity.getAuditTypeForInsert();
        audit(entity, type);
    }
View Full Code Here


    @Override
    @SuppressWarnings("unchecked")
    public void onPostUpdate(PostUpdateEvent event) {
        Auditable entity = (Auditable) event.getEntity();
        AuditLogType type = entity.getAuditTypeForUpdate();
        audit(entity, type);
    }
View Full Code Here

TOP

Related Classes of com.rupertjones.globalcron.common.domain.AuditLogType

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.