Package org.cyclos.services.marketplace
Interface AdDeliveryMethodService
-
- All Superinterfaces:
CRUDService<AdDeliveryMethodDTO,AdDeliveryMethodData,UserLocatorVO>,Service
- All Known Subinterfaces:
AdDeliveryMethodServiceLocal
- All Known Implementing Classes:
AdDeliveryMethodServiceImpl,AdDeliveryMethodServiceSecurity
public interface AdDeliveryMethodService extends CRUDService<AdDeliveryMethodDTO,AdDeliveryMethodData,UserLocatorVO>
Service interface for webshop advertisement delivery methods
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserAdDeliveryMethodsListDatagetListData(UserLocatorVO locator)Returns all the delivery methods belonging to the given user, or the logged user if the given locator is null, plus permissions over them.List<AdDeliveryMethodVO>list(UserLocatorVO locator)Returns all delivery methods assigned to the given user, or the logged user if the given locator is null.-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
getListData
UserAdDeliveryMethodsListData getListData(UserLocatorVO locator) throws FrameworkException
Returns all the delivery methods belonging to the given user, or the logged user if the given locator is null, plus permissions over them.- Throws:
FrameworkException
-
list
List<AdDeliveryMethodVO> list(UserLocatorVO locator) throws FrameworkException
Returns all delivery methods assigned to the given user, or the logged user if the given locator is null.- Throws:
FrameworkException
-
-