}
private void work(List<AuditDetails> list){
long t1 = new Date().getTime();
long t2;
CollaboratorLocalAbstract collaboratorLocal = UserInfoAbstract.get().getCollaboratorLocal();
for (AuditDetails auditDetails : list) {
try {
byte[] bytes = auditDetails.value.getBytes();
t2 = new Date().getTime();
auditDetails.sign = collaboratorLocal.sign(bytes);
System.out.println("SIGN AUDIT " + auditDetails.id + " IN " + (new Date().getTime() - t2) + " ms");
} catch (ClipsException ex) {
ex.printStackTrace();
}
}