com.softslate.commerce.businessobjects.product
Interface CategorySetting

All Superinterfaces:
BusinessObject
All Known Implementing Classes:
CategorySettingBean

public interface CategorySetting
extends BusinessObject

Interface representing a category setting within the system.

The database stores category settings in the npcCategorySetting table, and this interface can be used to represent a single row of that table. Each of the columns in npcCategorySetting map to getters and setters in this interface.

When the application needs to create an instance that implements npcCategorySetting, BusinessObjectFactory finds the name of the Java class to instantiate from the "categorySettingImplementer" setting in the npcSetting database table.

The default "categorySettingImplementer" is CategorySettingBean.

Author:
David Tobey

Method Summary
 int getCategoryID()
           
 int getCategorySettingID()
           
 java.lang.String getCode()
           
 java.lang.String getDescription()
           
 int getIntegerValue()
           
 java.lang.String getMediumValue()
           
 java.lang.String getName()
           
 java.lang.String getSmallValue()
           
 java.lang.String getTextValue()
           
 java.lang.String getType()
           
 java.lang.String getValueType()
           
 void setCategoryID(int categoryID)
           
 void setCategorySettingID(int categorySettingID)
           
 void setCode(java.lang.String code)
           
 void setDescription(java.lang.String description)
           
 void setIntegerValue(int integerValue)
           
 void setMediumValue(java.lang.String mediumValue)
           
 void setName(java.lang.String name)
           
 void setSmallValue(java.lang.String smallValue)
           
 void setTextValue(java.lang.String textValue)
           
 void setType(java.lang.String type)
           
 void setValueType(java.lang.String valueType)
           
 
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
 

Method Detail

getCategorySettingID

public int getCategorySettingID()

setCategorySettingID

public void setCategorySettingID(int categorySettingID)

getCode

public java.lang.String getCode()

setCode

public void setCode(java.lang.String code)

getDescription

public java.lang.String getDescription()

setDescription

public void setDescription(java.lang.String description)

getIntegerValue

public int getIntegerValue()

setIntegerValue

public void setIntegerValue(int integerValue)

getMediumValue

public java.lang.String getMediumValue()

setMediumValue

public void setMediumValue(java.lang.String mediumValue)

getName

public java.lang.String getName()

setName

public void setName(java.lang.String name)

getCategoryID

public int getCategoryID()

setCategoryID

public void setCategoryID(int categoryID)

getSmallValue

public java.lang.String getSmallValue()

setSmallValue

public void setSmallValue(java.lang.String smallValue)

getTextValue

public java.lang.String getTextValue()

setTextValue

public void setTextValue(java.lang.String textValue)

getType

public java.lang.String getType()

setType

public void setType(java.lang.String type)

getValueType

public java.lang.String getValueType()

setValueType

public void setValueType(java.lang.String valueType)


Copyright © SoftSlate, Inc. 2003–2005