Uses of Class
com.broadleafcommerce.bulk.domain.BulkUpdateError
Packages that use BulkUpdateError
Package
Description
-
Uses of BulkUpdateError in com.broadleafcommerce.bulk.domain
Methods in com.broadleafcommerce.bulk.domain that return BulkUpdateErrorModifier and TypeMethodDescriptionBulkUpdateError.setDescription
(String description) A message describing the error encountered.BulkUpdateError.setRecordId
(String recordId) Iftype
isBulkUpdateErrorType.RECORD
, this value should hold the ID of the record that experienced the error.BulkUpdateError.setRecordType
(String recordType) Iftype
isBulkUpdateErrorType.RECORD
, this value should hold the domain/type of the record that experienced the error.BulkUpdateError.setStackTrace
(String stackTrace) The string representation of the stacktrace.The type of error that was encountered.Methods in com.broadleafcommerce.bulk.domain that return types with arguments of type BulkUpdateErrorModifier and TypeMethodDescriptionBulkUpdate.getErrors()
When theBulkUpdate.status
is determined to beBulkUpdateStatus.ERROR
, this field should be set to contain the reasoning for the failure.Method parameters in com.broadleafcommerce.bulk.domain with type arguments of type BulkUpdateErrorModifier and TypeMethodDescriptionvoid
BulkUpdate.setErrors
(List<BulkUpdateError> errors) When theBulkUpdate.status
is determined to beBulkUpdateStatus.ERROR
, this field should be set to contain the reasoning for the failure. -
Uses of BulkUpdateError in com.broadleafcommerce.bulk.messaging
Method parameters in com.broadleafcommerce.bulk.messaging with type arguments of type BulkUpdateErrorModifier and TypeMethodDescriptionprotected void
BulkUpdateOrphanCheckListener.setErrorsAndDeleteSandbox
(BulkUpdate hangingUpdate, List<BulkUpdateError> errors) -
Uses of BulkUpdateError in com.broadleafcommerce.bulk.service
Methods in com.broadleafcommerce.bulk.service that return types with arguments of type BulkUpdateErrorModifier and TypeMethodDescriptionBatchProcessResponse.getErrors()
IfBatchProcessResponse.successful
is false, then this should contain all of the errors encountered when processing the batch.ReadRecordsResponse.getErrors()
IfReadRecordsResponse.successful
is false, then this should contain all of the errors encountered when attempting to read the records.Constructor parameters in com.broadleafcommerce.bulk.service with type arguments of type BulkUpdateErrorModifierConstructorDescriptionBatchProcessResponse
(boolean successful, List<BulkUpdateError> errors) ReadRecordsResponse
(boolean successful, Stream<P> records, List<BulkUpdateError> errors)