Interface WarehousingBaseStoreFacade
-
- All Known Implementing Classes:
DefaultWarehousingBaseStoreFacade
public interface WarehousingBaseStoreFacadeWarehousing facade exposing CRUD operations onBaseStoreModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchPageData<PointOfServiceData>getPointsOfServiceForBaseStoreId(PageableData pageableData, java.lang.String uid)API to get allPointOfServiceDatain the system, for the givenBaseStoreModel.UIDSearchPageData<WarehouseData>getWarehousesForBaseStoreId(PageableData pageableData, java.lang.String uid)API to get allWarehouseModelin the system, for the givenBaseStoreModel.UID
-
-
-
Method Detail
-
getWarehousesForBaseStoreId
SearchPageData<WarehouseData> getWarehousesForBaseStoreId(PageableData pageableData, java.lang.String uid)
API to get allWarehouseModelin the system, for the givenBaseStoreModel.UID- Parameters:
pageableData- pageable object that contains info on the number or pages and how many items in each page in addition the sorting infouid- the uid of the BaseStore for which warehouses are being retrieved- Returns:
- searchPageData result which includes the search results of warehouses for the baseStore, the pagination data, and the available sort options.
-
getPointsOfServiceForBaseStoreId
SearchPageData<PointOfServiceData> getPointsOfServiceForBaseStoreId(PageableData pageableData, java.lang.String uid)
API to get allPointOfServiceDatain the system, for the givenBaseStoreModel.UID- Parameters:
pageableData- pageable object that contains info on the number or pages and how many items in each page in addition the sorting infouid- the uid of the BaseStore for which warehouses are being retrieved- Returns:
- searchPageData result which includes the search results of points of service for the baseStore, the pagination data, and the available sort options.
-
-