in generic-examples/traits/tracing/InventoryService.java [68:77]
public static InventoryNotification getInventoryNotification(Integer orderId, Integer itemId, Integer quantity ){
InventoryNotification invenNotification = new InventoryNotification();
invenNotification.setOrderId(orderId);
invenNotification.setItemId(itemId);
invenNotification.setQuantity(quantity);
invenNotification.setDepartment("inventory");
SimpleDateFormat formatter= new SimpleDateFormat("yyyy-MM-dd 'at' HH:mm:ss z");
invenNotification.setDatetime(new Date(System.currentTimeMillis()));
return invenNotification;
}