@Override
public void setLineValue(Integer lineId, Float value) throws LineNotFoundException, RestMcuUpdateException {
LineInfo lineInfo = lines.get(lineId);
if (lineInfo == null) {
throw new LineNotFoundException("line not found" + lineId);
}
lineInfo.setValue(value);
lineInfo.setDateLatch(new Date());
lineInfo.getValueLatch().countDown();
}