Package lumis.portal.monitor.impl
Interface IMonitorUserAttributeValue
-
public interface IMonitorUserAttributeValue
Interface for custom user attribute value - trusted or untrusted.- Since:
- 14.0.0
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getUserAttributeId()
Returns user attribute identifier.java.lang.String
getValue()
Returns custom attribute value.void
updateValue(java.lang.String valueAsString, java.util.List<java.lang.Object> valueAsList)
Update the value.
-
-
-
Method Detail
-
getValue
java.lang.String getValue()
Returns custom attribute value.- Returns:
- custom attribute value.
- Since:
- 14.0.0
-
getUserAttributeId
java.lang.String getUserAttributeId()
Returns user attribute identifier.- Returns:
- user attribute identifier.
- Since:
- 14.0.0
-
updateValue
void updateValue(java.lang.String valueAsString, java.util.List<java.lang.Object> valueAsList)
Update the value.- Parameters:
valueAsString
- the value as string.valueAsList
- the value as list of object.- Since:
- 14.0.0
-
-