Interface ReturnableFulfillmentInfoService
- All Known Implementing Classes:
DefaultReturnableFulfillmentService
public interface ReturnableFulfillmentInfoService
Service responsible for determining the
ReturnableFulfillmentInfo for a given context.- Since:
- Order Services 2.2.0, Release Train 2.3.0
- Author:
- Nathan Moore (nathandmoore)
-
Method Summary
Modifier and TypeMethodDescriptiongetInfoForOrder(String orderId, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) getInfoForOrderFulfillment(String orderId, String fulfillmentId, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
-
Method Details
-
getInfoForOrderFulfillment
ReturnableFulfillmentInfo getInfoForOrderFulfillment(String orderId, String fulfillmentId, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) - Parameters:
orderId- ID of the originatingOrderfulfillmentId- ID of theOrderFulfillmentfor which to determine returnable informationcontextInfo- Additional tracking context and other info- Returns:
- A
ReturnableFulfillmentInfofor theOrderFulfillmentidentified byfulfillmentId.
-
getInfoForOrder
ReturnableFulfillmentInfo getInfoForOrder(String orderId, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) - Parameters:
orderId- ID of the originatingOrdercontextInfo- Additional tracking context and other info- Returns:
- A
ReturnableFulfillmentInfofor theOrderFulfillmentidentified byfulfillmentId.
-