Interface Setting
- All Superinterfaces:
BusinessObject
- All Known Implementing Classes:
SettingBean
Interface representing a single application setting stored in the
sscSetting database table.
When the application needs to create an instance that implements
Setting,
BusinessObjectFactory
finds the name of the Java class to instantiate from the "settingImplementer"
setting in the appComponents.properties file.
The default "settingImplementer" is
SettingBean.
- Author:
- David Tobey
-
Method Summary
Modifier and TypeMethodDescriptiongetCode()getName()intgetType()voidvoidsetDescription(String description) voidsetIntegerValue(Integer integerValue) voidsetMediumValue(String mediumValue) voidvoidsetSettingID(int settingID) voidsetSmallValue(String smallValue) voidsetTextValue(String textValue) voidvoidsetValueType(String valueType) Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
-
Method Details
-
getSettingID
int getSettingID() -
setSettingID
void setSettingID(int settingID) -
getCode
String getCode() -
setCode
-
getName
String getName() -
setName
-
getDescription
String getDescription() -
setDescription
-
getType
String getType() -
setType
-
getValueType
String getValueType() -
setValueType
-
getIntegerValue
Integer getIntegerValue() -
setIntegerValue
-
getSmallValue
String getSmallValue() -
setSmallValue
-
getMediumValue
String getMediumValue() -
setMediumValue
-
getTextValue
String getTextValue() -
setTextValue
-