use of ubic.gemma.model.common.auditAndSecurity.eventType.ArrayDesignMergeEvent in project Gemma by PavlidisLab.
the class ArrayDesignMergeHelperServiceImpl method audit.
/**
* Add an ArrayDesignMergeEvent event to the audit trail. Does not persist it.
*
* @param arrayDesign array design
* @param note note
*/
private void audit(ArrayDesign arrayDesign, String note) {
AuditEvent auditEvent = AuditEvent.Factory.newInstance(new Date(), AuditAction.UPDATE, note, null, null, new ArrayDesignMergeEvent());
arrayDesign.getAuditTrail().addEvent(auditEvent);
}
Aggregations