com.softslate.commerce.businessobjects.product
Interface ProductSetting

All Superinterfaces:
BusinessObject
All Known Implementing Classes:
ProductSettingBean

public interface ProductSetting
extends BusinessObject

Interface representing a product setting within the system.

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

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

The default "productSettingImplementer" is ProductSettingBean.

Author:
David Tobey

Method Summary
 java.lang.String getCode()
           
 java.lang.String getDescription()
           
 int getIntegerValue()
           
 java.lang.String getMediumValue()
           
 java.lang.String getName()
           
 int getProductID()
           
 int getProductSettingID()
           
 java.lang.String getSmallValue()
           
 java.lang.String getTextValue()
           
 java.lang.String getType()
           
 java.lang.String getValueType()
           
 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 setProductID(int productID)
           
 void setProductSettingID(int productSettingID)
           
 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

getProductSettingID

public int getProductSettingID()

setProductSettingID

public void setProductSettingID(int productSettingID)

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)

getProductID

public int getProductID()

setProductID

public void setProductID(int productID)

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