Uses of Class
com.broadleafcommerce.order.provider.jpa.domain.JpaOrderItem
Packages that use JpaOrderItem
-
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 JpaOrderItemModifier and TypeMethodDescriptionJpaOrder.getOrderItems()
The use ofFetchMode.SELECT
withBatchSize
is necessary, since there are multipleOneToMany
"bag" collections being loaded and the defaultFetchMode.JOIN
cannot be used due to the potential of duplicates.Method parameters in com.broadleafcommerce.order.provider.jpa.domain with type arguments of type JpaOrderItemModifier and TypeMethodDescriptionvoid
JpaOrder.setOrderItems
(List<JpaOrderItem> orderItems) The use ofFetchMode.SELECT
withBatchSize
is necessary, since there are multipleOneToMany
"bag" collections being loaded and the defaultFetchMode.JOIN
cannot be used due to the potential of duplicates.