in src/main/java/com/epam/digital/data/platform/starter/audit/service/AuditService.java [52:62]
public Map<String, Object> createContext(String action, String step, String tableName,
String rowId, Set<String> fields, String result) {
Map<String, Object> context = new HashMap<>();
putIfNotNull(context, ACTION, action);
putIfNotNull(context, STEP, step);
putIfNotNull(context, TABLE_NAME, tableName);
putIfNotNull(context, ROW_ID, rowId);
putIfNotNull(context, FIELDS, fields);
putIfNotNull(context, RESULT, result);
return context;
}