Interface Setting

All Superinterfaces:
BusinessObject
All Known Implementing Classes:
SettingBean

public interface Setting extends BusinessObject
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 Details

    • getSettingID

      int getSettingID()
    • setSettingID

      void setSettingID(int settingID)
    • getCode

      String getCode()
    • setCode

      void setCode(String code)
    • getName

      String getName()
    • setName

      void setName(String name)
    • getDescription

      String getDescription()
    • setDescription

      void setDescription(String description)
    • getType

      String getType()
    • setType

      void setType(String type)
    • getValueType

      String getValueType()
    • setValueType

      void setValueType(String valueType)
    • getIntegerValue

      Integer getIntegerValue()
    • setIntegerValue

      void setIntegerValue(Integer integerValue)
    • getSmallValue

      String getSmallValue()
    • setSmallValue

      void setSmallValue(String smallValue)
    • getMediumValue

      String getMediumValue()
    • setMediumValue

      void setMediumValue(String mediumValue)
    • getTextValue

      String getTextValue()
    • setTextValue

      void setTextValue(String textValue)