public interface InventoryNotificationDao
| Modifier and Type | Method and Description |
|---|---|
InventoryNotification |
create() |
void |
delete(InventoryNotification notification) |
void |
deleteAllProcessed() |
List<InventoryNotification> |
readAll(int start,
int pageSize,
boolean processed) |
List<InventoryNotification> |
readAllForCustomer(org.broadleafcommerce.profile.core.domain.Customer customer,
boolean processed) |
List<InventoryNotification> |
readAllForEmail(String email,
boolean processed) |
List<InventoryNotification> |
readAllForSku(org.broadleafcommerce.core.catalog.domain.Sku sku,
int start,
int pageSize,
boolean processed) |
InventoryNotification |
readById(Long id) |
InventoryNotification |
save(InventoryNotification notification) |
InventoryNotification readById(Long id)
InventoryNotificationService#findById(Long)}List<InventoryNotification> readAll(int start, int pageSize, boolean processed)
InventoryNotificationService#findAll(int, int, boolean)}List<InventoryNotification> readAllForSku(org.broadleafcommerce.core.catalog.domain.Sku sku, int start, int pageSize, boolean processed)
InventoryNotificationService#findAllForSku(Sku, int, int, boolean)}List<InventoryNotification> readAllForCustomer(org.broadleafcommerce.profile.core.domain.Customer customer, boolean processed)
InventoryNotificationService#findAllForCustomer(Customer, boolean)}List<InventoryNotification> readAllForEmail(String email, boolean processed)
InventoryNotificationService#findAllForEmail(String, boolean)}void delete(InventoryNotification notification)
InventoryNotificationService#delete(InventoryNotification)}InventoryNotification save(InventoryNotification notification)
InventoryNotificationService#save(InventoryNotification)}InventoryNotification create()
InventoryNotificationService#create()}void deleteAllProcessed()
InventoryNotificationService#deleteAllProcessed()}Copyright © 2020. All rights reserved.