Class ReflectionUtils
java.lang.Object
com.broadleafcommerce.dataexchange.domain.util.ReflectionUtils
Utility for basic reflection operations.
- Author:
- Kelly Tisdell (ktisdell)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfindSuperClasses
(ExchangeObject entity) Finds all superclasses but excludesObject
.static void
flattenCorrelationHierarchy
(ExchangeObject entity, Map<String, ExchangeObject> result) Recursively iterates over the properties of the entity and if they are instances ofExchangeObject
this extracts them into aMap
keyed by theirExchangeObject.getCorrelationId()
.static Map<String,
ExchangeObject> flattenCorrelationHierarchy
(List<? extends ExchangeObject> entities) static void
flattenCorrelationHierarchy
(List<? extends ExchangeObject> entities, Map<String, ExchangeObject> flattened) static void
resolveErrors
(Function<Throwable, DataExchangeError> dataExchangeErrorSupplier, BatchContext<?> batchContext) This method walks the resulting object graph fromBatchContext.getSavedTopLevelEntities()
that were either saved or errored, and assignserrors
toBatchContext.getResponseErrors()
.
-
Constructor Details
-
ReflectionUtils
public ReflectionUtils()
-
-
Method Details
-
findSuperClasses
Finds all superclasses but excludesObject
. This does not return interfaces. Returns a list of superclasses, or null.- Parameters:
entity
-- Returns:
-
flattenCorrelationHierarchy
public static void flattenCorrelationHierarchy(List<? extends ExchangeObject> entities, Map<String, ExchangeObject> flattened) -
flattenCorrelationHierarchy
public static Map<String,ExchangeObject> flattenCorrelationHierarchy(List<? extends ExchangeObject> entities) -
flattenCorrelationHierarchy
public static void flattenCorrelationHierarchy(@Nullable ExchangeObject entity, @NonNull Map<String, ExchangeObject> result) Recursively iterates over the properties of the entity and if they are instances ofExchangeObject
this extracts them into aMap
keyed by theirExchangeObject.getCorrelationId()
. This also sets their parent entity's correlationId.- Parameters:
entity
-result
-
-
resolveErrors
public static void resolveErrors(@NonNull Function<Throwable, DataExchangeError> dataExchangeErrorSupplier, @NonNull BatchContext<?> batchContext) This method walks the resulting object graph fromBatchContext.getSavedTopLevelEntities()
that were either saved or errored, and assignserrors
toBatchContext.getResponseErrors()
. The assignedDataExchangeError.setPath(String)
will be a JSON Path, allowing callers to traverse the responses and determine which objects in the graph each respective error belongs with.- Parameters:
dataExchangeErrorSupplier
- the function that supplies theDataExchangeError
based on the ThrowablebatchContext
- theBatchContext
that contains the state of the batch, saved entities, and errors
-