newLocation = bound(newLocation);
flight.getAircraft().setLocation(newLocation);
final OutboundEvent flightMovedEvent = new OutboundEvent.Builder()
.mediaType(MediaType.APPLICATION_JSON_TYPE)
.data(new FlightLocation(flight.getId(), newLocation))
.build();
broadcaster.broadcast(flightMovedEvent);
}