Interface ProductSetting

All Superinterfaces:
BusinessObject
All Known Implementing Classes:
ProductSettingBean

public interface ProductSetting extends BusinessObject
Interface representing a product setting within the system.

When the application needs to create an instance that implements sscProductSetting, BusinessObjectFactory finds the name of the Java class to instantiate from the "productSettingImplementer" setting in the appComponents.properties file.

The default "productSettingImplementer" is ProductSettingBean.

Author:
David Tobey
  • Method Details

    • getProductSettingID

      int getProductSettingID()
    • setProductSettingID

      void setProductSettingID(int productSettingID)
    • getProduct

      Product getProduct()
    • setProduct

      void setProduct(Product product)
    • getCode

      String getCode()
    • setCode

      void setCode(String code)
    • getDescription

      String getDescription()
    • setDescription

      void setDescription(String description)
    • getIntegerValue

      int getIntegerValue()
    • setIntegerValue

      void setIntegerValue(int integerValue)
    • getMediumValue

      String getMediumValue()
    • setMediumValue

      void setMediumValue(String mediumValue)
    • getName

      String getName()
    • setName

      void setName(String name)
    • getProductID

      int getProductID()
    • setProductID

      void setProductID(int productID)
    • getSmallValue

      String getSmallValue()
    • setSmallValue

      void setSmallValue(String smallValue)
    • getTextValue

      String getTextValue()
    • setTextValue

      void setTextValue(String textValue)
    • getType

      String getType()
    • setType

      void setType(String type)
    • getValueType

      String getValueType()
    • setValueType

      void setValueType(String valueType)
    • getValue

      String getValue()