Uses of Class
com.broadleafcommerce.order.provider.jpa.domain.JpaOrderItem
- 
Packages that use JpaOrderItem Package Description com.broadleafcommerce.order.provider.jpa.domain  - 
- 
Uses of JpaOrderItem in com.broadleafcommerce.order.provider.jpa.domain
Methods in com.broadleafcommerce.order.provider.jpa.domain that return types with arguments of type JpaOrderItem Modifier and Type Method Description List<JpaOrderItem>JpaOrder. getOrderItems()The use ofFetchMode.SELECTwithBatchSizeis necessary, since there are multipleOneToMany"bag" collections being loaded and the defaultFetchMode.JOINcannot be used due to the potential of duplicates.Method parameters in com.broadleafcommerce.order.provider.jpa.domain with type arguments of type JpaOrderItem Modifier and Type Method Description voidJpaOrder. setOrderItems(List<JpaOrderItem> orderItems)The use ofFetchMode.SELECTwithBatchSizeis necessary, since there are multipleOneToMany"bag" collections being loaded and the defaultFetchMode.JOINcannot be used due to the potential of duplicates. 
 -