Interface WebServerSetting


  • public interface WebServerSetting
    This interface represents a single server setting. It has methods to examine the ID, datatype, and value, along with a method to set the value.
    Since:
    MicroStrategy Web 7.5.2
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getDataType()
      Returns the datatype of the setting.
      int getID()
      This method returns the ID of the setting.
      java.lang.String getValue()
      Returns the current value of the setting.
      void setValue​(java.lang.String value)
      Sets the value of the setting.
    • Method Detail

      • getID

        int getID()
        This method returns the ID of the setting.
        Returns:
        The ID of the setting, from EnumDSSXMLServerSettingID.
      • getDataType

        int getDataType()
        Returns the datatype of the setting.
        Returns:
        The datatype of the setting, from EnumDSSXMLDataType.
      • getValue

        java.lang.String getValue()
        Returns the current value of the setting.
        Returns:
        The current value of the setting.
      • setValue

        void setValue​(java.lang.String value)
        Sets the value of the setting. Note that this value must match the datatype. If the value is a mismatch with the datatype, an error will occur when saving the owner WebServerDef object back to the server.
        Parameters:
        value - The new value to use for the setting.