data.ooimpl
Interface SelfManagingDBEDestination
- All Known Implementing Classes:
- CatalogImpl, StockImpl
- public interface SelfManagingDBEDestination
- extends DataBasketEntryDestination
DataBasketEntryDestination that knows how to rollback or commit add operations.
- Since:
- v2.0
- Version:
- 2.0 14/06/1999
- Author:
- Steffen Zschaler
- See Also:
DataBasketEntryImpl
commitAdd
public void commitAdd(DataBasket db,
DataBasketEntry dbe)
- Called when an add must be commited.
- Override:
- Always.
- Parameters:
db
- the DataBasket that issued the commit requestdbe
- the DataBasketEntry describing the operation to commit.
rollbackAdd
public void rollbackAdd(DataBasket db,
DataBasketEntry dbe)
- Called when an add must be rolled back.
- Override:
- Always.
- Parameters:
db
- the DataBasket that issued the rollback requestdbe
- the DataBasketEntry describing the operation to rollback.