Class OrderNumberBean
java.lang.Object
com.softslate.commerce.businessobjects.core.BaseBusinessObject
com.softslate.commerce.businessobjects.order.OrderNumberBean
- All Implemented Interfaces:
BusinessObject
,OrderNumber
,Serializable
Object representing an order number within the system.
OrderNumberBean
is the default implementation of the
OrderNumber
interface for the application.
The database stores orders in the sscOrderNumber
table, and this
interface can be used to represent a single row of that table. The Hibernate
configuration file OrderNumberBean.hbm.xml
maps that table's
columns to the properties in this object.
- Author:
- David Tobey
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprivate int
private static final long
-
Constructor Summary
-
Method Summary
Methods inherited from class com.softslate.commerce.businessobjects.core.BaseBusinessObject
initialize
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
orderNumber
private int orderNumber
-
-
Constructor Details
-
OrderNumberBean
public OrderNumberBean()
-
-
Method Details
-
getOrderNumber
public int getOrderNumber()- Specified by:
getOrderNumber
in interfaceOrderNumber
-
setOrderNumber
public void setOrderNumber(int orderNumber) - Specified by:
setOrderNumber
in interfaceOrderNumber
-