Package com.microstrategy.web.objects
Interface WebMonitorProperty
-
public interface WebMonitorProperty
A WebMonitorProperty corresponds to a property of aWebMonitorField
in aWebMonitor
. It provides access to its name, value and datatype. The value of a property can be edited. New properties can be added too through the monitor field.- Since:
- MicroStrategy Web 7.5.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
Returns the name of this monitor property.int
getType()
java.lang.String
getValue()
Returns the value for this monitor property.void
setValue(java.lang.String value)
Sets the value for this monitor property.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of this monitor property.- Returns:
- name of this monitor property.
-
getValue
java.lang.String getValue()
Returns the value for this monitor property.- Returns:
- value of this monitor property.
-
setValue
void setValue(java.lang.String value)
Sets the value for this monitor property.
-
getType
int getType()
-
-