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
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetCode()getName()getOrder()intintgetType()getValue()voidvoidsetDescription(String description) voidsetIntegerValue(Integer integerValue) voidsetMediumValue(String mediumValue) voidvoidvoidsetOrderID(int orderID) voidsetOrderSettingID(int orderSettingID) voidsetSmallValue(String smallValue) voidsetTextValue(String textValue) voidvoidsetValueType(String valueType) 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:
-
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:
getOrderSettingIDin interfaceOrderSetting
-
setOrderSettingID
public void setOrderSettingID(int orderSettingID) - Specified by:
setOrderSettingIDin interfaceOrderSetting
-
getOrder
- Specified by:
getOrderin interfaceOrderSetting
-
setOrder
- Specified by:
setOrderin interfaceOrderSetting
-
getCode
- Specified by:
getCodein interfaceOrderSetting
-
setCode
- Specified by:
setCodein interfaceOrderSetting
-
getDescription
- Specified by:
getDescriptionin interfaceOrderSetting
-
setDescription
- Specified by:
setDescriptionin interfaceOrderSetting
-
getIntegerValue
- Specified by:
getIntegerValuein interfaceOrderSetting
-
setIntegerValue
- Specified by:
setIntegerValuein interfaceOrderSetting
-
getMediumValue
- Specified by:
getMediumValuein interfaceOrderSetting
-
setMediumValue
- Specified by:
setMediumValuein interfaceOrderSetting
-
getName
- Specified by:
getNamein interfaceOrderSetting
-
setName
- Specified by:
setNamein interfaceOrderSetting
-
getOrderID
public int getOrderID()- Specified by:
getOrderIDin interfaceOrderSetting
-
setOrderID
public void setOrderID(int orderID) - Specified by:
setOrderIDin interfaceOrderSetting
-
getSmallValue
- Specified by:
getSmallValuein interfaceOrderSetting
-
setSmallValue
- Specified by:
setSmallValuein interfaceOrderSetting
-
getTextValue
- Specified by:
getTextValuein interfaceOrderSetting
-
setTextValue
- Specified by:
setTextValuein interfaceOrderSetting
-
getType
- Specified by:
getTypein interfaceOrderSetting
-
setType
- Specified by:
setTypein interfaceOrderSetting
-
getValueType
- Specified by:
getValueTypein interfaceOrderSetting
-
setValueType
- Specified by:
setValueTypein interfaceOrderSetting
-
getValue
- Specified by:
getValuein interfaceOrderSetting
-