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
FieldsModifier and TypeFieldDescriptionprivate intprivate static final long -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.softslate.commerce.businessobjects.core.BaseBusinessObject
initializeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods 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:
getOrderNumberin interfaceOrderNumber
-
setOrderNumber
public void setOrderNumber(int orderNumber) - Specified by:
setOrderNumberin interfaceOrderNumber
-