public List<Order> getOrders() { if (null != orders) { return orders.getOrders(); } return null; }
public long getLastUpdateTimestamp() { if (null == orders) { return -1; } return orders.getLastUpdateTimestamp(); }