@Override
 public VehicleStatistics getVehicleStatistics(User user) throws NoClearanceException {
   if (user.canViewStatistics()) return this.statisticsmanager.getVehicleStatistics();
   else throw new NoClearanceException();
 }