Interface DataExchangeService<T extends ExchangeObject>

Type Parameters:
T -
All Known Subinterfaces:
ComprehensiveProductExchangeService<T>
All Known Implementing Classes:
AbstractDataExchangeService, DefaultComprehensiveProductExchangeService

public interface DataExchangeService<T extends ExchangeObject>
Service whose job it is to orchestrate an exchange of data between services, usually on behalf of an external system. This generally involves accepting a payload of data, splitting that payload into constituent components, calling the necessary services, and then aggregating and returning a response.
Author:
Kelly Tisdell (ktisdell)
  • Method Summary

    Modifier and Type
    Method
    Description
    saveAll(List<T> entities, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
    Accepts a list of entities, typically composite entities that require calls to multiple services and/or service API endpoints to create or update.
  • Method Details

    • saveAll

      BatchContext<T> saveAll(List<T> entities, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
      Accepts a list of entities, typically composite entities that require calls to multiple services and/or service API endpoints to create or update. This method orchestrates the API calls to ensure that all calls are made in the order required and that the results are used to construct a response of the saved entities.
      Parameters:
      entities -
      contextInfo -
      Returns: