Package lumis.portal.monitor
Interface IMonitorEvent
-
- All Known Subinterfaces:
IMonitorEventSPI
- All Known Implementing Classes:
MonitorEvent
@StableMinor(version="14.1", sinceVersion="9.0") public interface IMonitorEvent
An event that may be monitored. Its definition specifies what data is saved and how it is saved.- Since:
- 9.0.0
- Version:
- $Revision: 24683 $ $Date: 2021-08-23 18:55:58 -0300 (Mon, 23 Aug 2021) $
- See Also:
lumis.portal.monitor
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_EVENT_PREFIX
Default event prefix.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Returns the description of this event.Collection<IMonitorFieldInstance>
getFields()
Returns an unmodifiable collection of the fields that should be collected for this event.String
getId()
Returns the identifier for this event.String
getImage()
Returns the image.String
getLocalizedDescription()
Returns the localized description of this event.String
getLocalizedName()
Returns the localized name of this event.String
getLocalizedVerb()
Returns the localized verb of this event.String
getName()
Returns the name of this event.String
getStringResourcePath()
The string resource path for localizing this event's strings.String
getVerb()
Returns the verb.boolean
isEnabled()
Returns if the monitoring for this event is enabled.
-
-
-
Field Detail
-
DEFAULT_EVENT_PREFIX
static final String DEFAULT_EVENT_PREFIX
Default event prefix.- Since:
- 9.0.0]
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
String getId()
Returns the identifier for this event.- Returns:
- the identifier for this event.
- Since:
- 9.0.0
-
getFields
Collection<IMonitorFieldInstance> getFields()
Returns an unmodifiable collection of the fields that should be collected for this event.- Returns:
- an unmodifiable collection of the fields that should be collected for this event.
- Since:
- 9.0.0
-
getDescription
String getDescription()
Returns the description of this event. The description is localizable usinggetStringResourcePath()
.- Returns:
- the description of this event.
- Since:
- 9.0.0
-
getLocalizedDescription
String getLocalizedDescription()
Returns the localized description of this event.- Returns:
- the description of this event.
- Since:
- 11.0.0
-
isEnabled
boolean isEnabled()
Returns if the monitoring for this event is enabled.- Returns:
- true if enabled or false if disabled.
- Since:
- 9.0.0
-
getName
String getName()
Returns the name of this event. The name is localizable usinggetStringResourcePath()
.- Returns:
- the name of this event.
- Since:
- 9.0.0
-
getImage
String getImage()
Returns the image.- Returns:
- the image
- Since:
- 11.0.0
-
getVerb
String getVerb()
Returns the verb.- Returns:
- the verb.
- Since:
- 11.0.0
-
getLocalizedName
String getLocalizedName()
Returns the localized name of this event.- Returns:
- the name for this event.
- Since:
- 11.0.0
-
getStringResourcePath
String getStringResourcePath()
The string resource path for localizing this event's strings.- Returns:
- the string resource path.
- Since:
- 9.0.0
-
getLocalizedVerb
String getLocalizedVerb()
Returns the localized verb of this event.- Returns:
- the verb for this event.
- Since:
- 11.0.0
-
-