public void validate(AcFlightResult value, JwList<JwErrorIF> errors) {
   _flightId.validate(value.getFlightId(), errors);
   _resultId.validate(value.getResultId(), errors);
   _actionId.validate(value.getActionId(), errors);
   _batchId.validate(value.getBatchId(), errors);
   _effectiveUtcTs.validate(value.getEffectiveUtcTs(), errors);
 }