java.lang.Object
com.broadleafcommerce.dataexchange.domain.product.ProductList<T>
All Implemented Interfaces:
Serializable, Iterable<T>

public class ProductList<T extends ComprehensiveProduct> extends Object implements Serializable, Iterable<T>
See Also:
  • Constructor Details

    • ProductList

      public ProductList()
  • Method Details

    • iterator

      @NotNull public @NotNull Iterator<T> iterator()
      Specified by:
      iterator in interface Iterable<T extends ComprehensiveProduct>
    • forEach

      public void forEach(Consumer<? super T> action)
      Specified by:
      forEach in interface Iterable<T extends ComprehensiveProduct>
    • getProducts

      public List<T> getProducts()
    • getErrors

      public List<DataExchangeError> getErrors()
      This will be a list of errors. Each error has a path, and the path will be a JSON Path referencing the getProducts() list. For example,
      • $[0].variants[1]
      • $[1].prices[3]
      • $[2].assets[2].translations[5]
      This allows clients to find the objects in the JSON object graph that is returned by referencing the JSON Path of each error. This list will be set at the end of a batch process, immediately prior to returning this to the client.
    • setProducts

      public void setProducts(List<T> products)
    • setErrors

      public void setErrors(List<DataExchangeError> errors)
      This will be a list of errors. Each error has a path, and the path will be a JSON Path referencing the getProducts() list. For example,
      • $[0].variants[1]
      • $[1].prices[3]
      • $[2].assets[2].translations[5]
      This allows clients to find the objects in the JSON object graph that is returned by referencing the JSON Path of each error. This list will be set at the end of a batch process, immediately prior to returning this to the client.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • canEqual

      protected boolean canEqual(Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object