Package com.microstrategy.web.objects
Class WebProjectPlatformAnalyticsStatisticsTableSettingImpl
- java.lang.Object
-
- com.microstrategy.web.objects.WebProjectPlatformAnalyticsStatisticsTableSettingImpl
-
- All Implemented Interfaces:
WebProjectSetting
public class WebProjectPlatformAnalyticsStatisticsTableSettingImpl extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getDataType()
Returns the datatype of the setting, fromEnumDSSXMLDataType
.int
getID()
Returns the ID of the setting, fromEnumDSSXMLServerProjectSettingID
.java.lang.String
getValue()
Returns the current value of the setting, in string format.void
setValue(java.lang.String val)
Sets a new value for the setting.
-
-
-
Method Detail
-
setValue
public void setValue(java.lang.String val)
Description copied from interface:WebProjectSetting
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 ownerWebServerDef
object back to metadata.- Specified by:
setValue
in interfaceWebProjectSetting
- Parameters:
val
- The new value to use for the setting.
-
getID
public int getID()
Description copied from interface:WebProjectSetting
Returns the ID of the setting, fromEnumDSSXMLServerProjectSettingID
.- Specified by:
getID
in interfaceWebProjectSetting
- Returns:
- The ID of this setting, from
EnumDSSXMLServerProjectSettingID
.
-
getDataType
public int getDataType()
Description copied from interface:WebProjectSetting
Returns the datatype of the setting, fromEnumDSSXMLDataType
.- Specified by:
getDataType
in interfaceWebProjectSetting
- Returns:
- The datatype of this setting, from
EnumDSSXMLDataType
.
-
getValue
public java.lang.String getValue()
Description copied from interface:WebProjectSetting
Returns the current value of the setting, in string format.- Specified by:
getValue
in interfaceWebProjectSetting
- Returns:
- The current value of the setting.
-
-