Class DummyBaseStoreService
- java.lang.Object
-
- de.hybris.platform.sap.sapordermgmtbol.transaction.util.DummyBaseStoreService
-
- All Implemented Interfaces:
BaseStoreService
public class DummyBaseStoreService extends java.lang.Object implements BaseStoreService
Dummy implementation of BaseStoreService
-
-
Constructor Summary
Constructors Constructor Description DummyBaseStoreService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<BaseStoreModel>getAllBaseStores()Gets the all base stores.BaseStoreModelgetBaseStoreForUid(java.lang.String arg0)Gets the base store for uid.BaseStoreModelgetCurrentBaseStore()Gets currentBaseStorebasing on theBaseSiteModel.getStores()relation.
-
-
-
Method Detail
-
getAllBaseStores
public java.util.List<BaseStoreModel> getAllBaseStores()
Description copied from interface:BaseStoreServiceGets the all base stores.- Specified by:
getAllBaseStoresin interfaceBaseStoreService- Returns:
- List of found
BaseStoreModelobjects.
-
getBaseStoreForUid
public BaseStoreModel getBaseStoreForUid(java.lang.String arg0) throws AmbiguousIdentifierException, UnknownIdentifierException
Description copied from interface:BaseStoreServiceGets the base store for uid.- Specified by:
getBaseStoreForUidin interfaceBaseStoreService- Parameters:
arg0- the uid of base store- Returns:
- found
BaseStoreModelobject - Throws:
AmbiguousIdentifierException- thrown when more than one object has been foundUnknownIdentifierException- thrown when object has not been found
-
getCurrentBaseStore
public BaseStoreModel getCurrentBaseStore()
Description copied from interface:BaseStoreServiceGets currentBaseStorebasing on theBaseSiteModel.getStores()relation.- Specified by:
getCurrentBaseStorein interfaceBaseStoreService- Returns:
- found
BaseStoreModelobject
-
-