Interface OrderNumber
- All Superinterfaces:
BusinessObject
- All Known Implementing Classes:
OrderNumberBean
Interface representing an order number within the system. An order number is generated as each order is placed. This
interface helps ensure that each order number is unique, and that order numbers go upward sequentially with no gaps.
When the application needs to create an instance that implements OrderNumber
,
BusinessObjectFactory
finds the name of the Java class to
instantiate from the "orderNumberImplementer" setting in the appComponents.properties
file.
The default "orderNumberImplementer" is OrderNumberBean
.
- Author:
- David Tobey
-
Method Summary
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
-
Method Details
-
getOrderNumber
int getOrderNumber() -
setOrderNumber
void setOrderNumber(int orderNumber)
-