com.microstrategy.web.objects.WebProjectSetting |
This interface corresponds to a single setting of a project reference. This interface contains methods to examine the ID, datatype, and value of the setting, plus a method to change the setting.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract int |
getDataType()
Returns the datatype of the setting, from
EnumDSSXMLDataType . | ||||||||||
abstract int |
getID()
Returns the ID of the setting, from
EnumDSSXMLServerProjectSettingID . | ||||||||||
abstract String |
getValue()
Returns the current value of the setting, in string format.
| ||||||||||
abstract void |
setValue(String val)
Sets a new value for the setting.
|
Returns the datatype of the setting, from EnumDSSXMLDataType
.
EnumDSSXMLDataType
.
Returns the ID of the setting, from EnumDSSXMLServerProjectSettingID
.
EnumDSSXMLServerProjectSettingID
.
Returns the current value of the setting, in string format.
Sets a new value for the setting. Note that this value should fit the
datatype of the setting; if it does not, an error will occur upon saving the
owner WebServerDef
object back to metadata.
val | The new value to use for the setting. |
---|