@Override
  public void setPlaceColor(int id, UUID nacId, INode place, Color color) throws EngineException {

    if (!(place instanceof Place)) {
      warning("place isn't a Place");
      return;
    }

    ruleManipulationBackend.setPlaceColor(id, nacId, (Place) place, color);
  }