Package lumis.portal.monitor
Interface IMonitorFieldGroupSPI
-
- All Superinterfaces:
IMonitorElementSPI<IMonitorFieldGroupSPI>
,IMonitorFieldGroup
- All Known Implementing Classes:
MonitorFieldGroup
public interface IMonitorFieldGroupSPI extends IMonitorFieldGroup, IMonitorElementSPI<IMonitorFieldGroupSPI>
- Since:
- 11.0.0
- Version:
- $Revision: 23941 $ $Date: 2020-06-29 16:08:50 -0300 (Mon, 29 Jun 2020) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IMonitorFieldGroupSPI
addField(IMonitorFieldSPI field)
Adds the given field in this field group.IMonitorFieldGroupSPI
removeField(String fieldId)
Removes the given field.IMonitorFieldGroupSPI
setStandard(boolean isStandard)
Sets this field group either as standard or custom (non-standard).-
Methods inherited from interface lumis.portal.monitor.IMonitorElementSPI
getId, getServiceInstanceId
-
Methods inherited from interface lumis.portal.monitor.IMonitorFieldGroup
getFields, getId
-
-
-
-
Method Detail
-
addField
IMonitorFieldGroupSPI addField(IMonitorFieldSPI field)
Adds the given field in this field group.- Parameters:
field
- the field.- Returns:
- this field group for chaining.
- Since:
- 11.0.0
-
removeField
IMonitorFieldGroupSPI removeField(String fieldId)
Removes the given field.- Parameters:
fieldId
- the field identifier.- Returns:
- this field group.
- Since:
- 11.0.0
-
setStandard
IMonitorFieldGroupSPI setStandard(boolean isStandard)
Sets this field group either as standard or custom (non-standard).- Parameters:
isStandard
- true to mark this field group as standard, false to custom.- Returns:
- this field group for chaining.
- Since:
- 11.0.0
-
-