Class OrderSettingBean
java.lang.Object
com.softslate.commerce.businessobjects.core.BaseBusinessObject
com.softslate.commerce.businessobjects.order.OrderSettingBean
- All Implemented Interfaces:
BusinessObject
,OrderSetting
,Serializable
Object representing an order setting within the system.
OrderSettingBean
is the default implementation of the
OrderSetting
interface for the application.
The database stores order settings in the sscOrderSetting
table, and this object can be used to represent a single row of that
table. The Hibernate configuration file
OrderSettingBean.hbm.xml
maps that table's columns to the
properties in this object.
- Author:
- David Tobey
- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetCode()
getName()
getOrder()
int
int
getType()
getValue()
void
void
setDescription
(String description) void
setIntegerValue
(Integer integerValue) void
setMediumValue
(String mediumValue) void
void
void
setOrderID
(int orderID) void
setOrderSettingID
(int orderSettingID) void
setSmallValue
(String smallValue) void
setTextValue
(String textValue) void
void
setValueType
(String valueType) 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:
-
orderSettingID
private int orderSettingID -
order
-
orderID
private int orderID -
code
-
name
-
description
-
type
-
valueType
-
integerValue
-
smallValue
-
mediumValue
-
textValue
-
-
Constructor Details
-
OrderSettingBean
public OrderSettingBean()
-
-
Method Details
-
getOrderSettingID
public int getOrderSettingID()- Specified by:
getOrderSettingID
in interfaceOrderSetting
-
setOrderSettingID
public void setOrderSettingID(int orderSettingID) - Specified by:
setOrderSettingID
in interfaceOrderSetting
-
getOrder
- Specified by:
getOrder
in interfaceOrderSetting
-
setOrder
- Specified by:
setOrder
in interfaceOrderSetting
-
getCode
- Specified by:
getCode
in interfaceOrderSetting
-
setCode
- Specified by:
setCode
in interfaceOrderSetting
-
getDescription
- Specified by:
getDescription
in interfaceOrderSetting
-
setDescription
- Specified by:
setDescription
in interfaceOrderSetting
-
getIntegerValue
- Specified by:
getIntegerValue
in interfaceOrderSetting
-
setIntegerValue
- Specified by:
setIntegerValue
in interfaceOrderSetting
-
getMediumValue
- Specified by:
getMediumValue
in interfaceOrderSetting
-
setMediumValue
- Specified by:
setMediumValue
in interfaceOrderSetting
-
getName
- Specified by:
getName
in interfaceOrderSetting
-
setName
- Specified by:
setName
in interfaceOrderSetting
-
getOrderID
public int getOrderID()- Specified by:
getOrderID
in interfaceOrderSetting
-
setOrderID
public void setOrderID(int orderID) - Specified by:
setOrderID
in interfaceOrderSetting
-
getSmallValue
- Specified by:
getSmallValue
in interfaceOrderSetting
-
setSmallValue
- Specified by:
setSmallValue
in interfaceOrderSetting
-
getTextValue
- Specified by:
getTextValue
in interfaceOrderSetting
-
setTextValue
- Specified by:
setTextValue
in interfaceOrderSetting
-
getType
- Specified by:
getType
in interfaceOrderSetting
-
setType
- Specified by:
setType
in interfaceOrderSetting
-
getValueType
- Specified by:
getValueType
in interfaceOrderSetting
-
setValueType
- Specified by:
setValueType
in interfaceOrderSetting
-
getValue
- Specified by:
getValue
in interfaceOrderSetting
-