public JwTimestampValidator newScheduledArrivalLocalTsValidator() {
   JwTimestampValidator e = new JwTimestampValidator();
   e.setModel("consignmentFlight");
   e.setField("scheduledArrivalLocalTs");
   e.setRequired();
   return e;
 }
 public JwTimestampValidator newEffectiveUtcTsValidator() {
   JwTimestampValidator e = new JwTimestampValidator();
   e.setModel("flightResult");
   e.setField("effectiveUtcTs");
   e.setRequired();
   return e;
 }
 public void validate(AcConsignmentFlight value, JwList<JwErrorIF> errors) {
   _id.validate(value.getId(), errors);
   _consignmentId.validate(value.getConsignmentId(), errors);
   _carrierCode.validate(value.getCarrierCode(), errors);
   _number.validate(value.getNumber(), errors);
   _flightId.validate(value.getFlightId(), errors);
   _scheduledOriginAirportCode.validate(value.getScheduledOriginAirportCode(), errors);
   _scheduledDestinationAirportCode.validate(value.getScheduledDestinationAirportCode(), errors);
   _scheduledDepartureLocalTs.validate(value.getScheduledDepartureLocalTs(), errors);
   _scheduledArrivalLocalTs.validate(value.getScheduledArrivalLocalTs(), errors);
   _contractedCarrierCode.validate(value.getContractedCarrierCode(), errors);
   _contractNumber.validate(value.getContractNumber(), errors);
   _rateType.validate(value.getRateType(), errors);
   _sequence.validate(value.getSequence(), errors);
 }
 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);
 }
 public void validate(AcConsignment value, JwList<JwErrorIF> errors) {
   _id.validate(value.getId(), errors);
   _number.validate(value.getNumber(), errors);
   _completionDt.validate(value.getCompletionDt(), errors);
   _completionTs.validate(value.getCompletionTs(), errors);
   _expectedReceiveLocalTs.validate(value.getExpectedReceiveLocalTs(), errors);
   _expectedDepartureLocalTs.validate(value.getExpectedDepartureLocalTs(), errors);
   _expectedDeliverLocalTs.validate(value.getExpectedDeliverLocalTs(), errors);
   _closeoutLocalTs.validate(value.getCloseoutLocalTs(), errors);
   _expectedOriginAirportCode.validate(value.getExpectedOriginAirportCode(), errors);
   _expectedDestinationAirportCode.validate(value.getExpectedDestinationAirportCode(), errors);
   _expectedKilograms.validate(value.getExpectedKilograms(), errors);
   _itemCount.validate(value.getItemCount(), errors);
   _relationship.validate(value.getRelationship(), errors);
   _category.validate(value.getCategory(), errors);
   _status.validate(value.getStatus(), errors);
   _state.validate(value.getState(), errors);
   _postCode.validate(value.getPostCode(), errors);
   _contractNumber.validate(value.getContractNumber(), errors);
   _expectedCarrierOriginAirportCode.validate(value.getExpectedCarrierOriginAirportCode(), errors);
   _expectedCarrierDestinationAirportCode.validate(
       value.getExpectedCarrierDestinationAirportCode(), errors);
   _handoverOriginLocationCode.validate(value.getHandoverOriginLocationCode(), errors);
   _handoverOriginLocationAgency.validate(value.getHandoverOriginLocationAgency(), errors);
   _handoverOriginLocationName.validate(value.getHandoverOriginLocationName(), errors);
   _handoverDestinationLocationCode.validate(value.getHandoverDestinationLocationCode(), errors);
   _handoverDestinationLocationAgency.validate(
       value.getHandoverDestinationLocationAgency(), errors);
   _handoverDestinationLocationName.validate(value.getHandoverDestinationLocationName(), errors);
   _finalActionLocalTs.validate(value.getFinalActionLocalTs(), errors);
   _reportExpectedArrivalLocalTs.validate(value.getReportExpectedArrivalLocalTs(), errors);
   _reportExpectedDeliverLocalTs.validate(value.getReportExpectedDeliverLocalTs(), errors);
   _reportCloseoutLocalTs.validate(value.getReportCloseoutLocalTs(), errors);
   _allocationNumber.validate(value.getAllocationNumber(), errors);
   _productType.validate(value.getProductType(), errors);
 }
 public JwTimestampValidator newReportCloseoutLocalTsValidator() {
   JwTimestampValidator e = new JwTimestampValidator();
   e.setModel("consignment");
   e.setField("reportCloseoutLocalTs");
   return e;
 }
 public JwTimestampValidator newReportExpectedDeliverLocalTsValidator() {
   JwTimestampValidator e = new JwTimestampValidator();
   e.setModel("consignment");
   e.setField("reportExpectedDeliverLocalTs");
   return e;
 }
 public JwTimestampValidator newFinalActionLocalTsValidator() {
   JwTimestampValidator e = new JwTimestampValidator();
   e.setModel("consignment");
   e.setField("finalActionLocalTs");
   return e;
 }
 public JwTimestampValidator newExpectedDepartureLocalTsValidator() {
   JwTimestampValidator e = new JwTimestampValidator();
   e.setModel("consignment");
   e.setField("expectedDepartureLocalTs");
   return e;
 }
 public JwTimestampValidator newCompletionTsValidator() {
   JwTimestampValidator e = new JwTimestampValidator();
   e.setModel("consignment");
   e.setField("completionTs");
   return e;
 }