Package lumis.portal.activitystream
Interface IActivityNotifierConfig
-
public interface IActivityNotifierConfig
Represents an activity notifier configuration.- Since:
- 10.0.0
- Version:
- $Revision: 19766 $ $Date: 2017-01-05 18:35:09 -0200 (Thu, 05 Jan 2017) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
appliesToPriority(double priority)
Indicates whether the specified notifier is to be used for a priority value.String
getClassName()
The name of notifier class to be used.Double
getPriorityGreaterThan()
Returns minimum priority (exclusive) in which the notifier will be executed.Double
getPriorityGreaterThanOrEqualTo()
Returns minimum priority (inclusive) in which the notifier will be executed.Double
getPriorityLessThan()
Returns maximum priority (exclusive) in which the notifier will be executed.Double
getPriorityLessThanOrEqualTo()
Returns maximum priority (inclusive) in which the notifier will be executed.
-
-
-
Method Detail
-
appliesToPriority
boolean appliesToPriority(double priority)
Indicates whether the specified notifier is to be used for a priority value.- Parameters:
priority
- the priority value.- Returns:
true
if this notifier is to be used for the specified priority,false
otherwise.- Since:
- 8.2.0
-
getPriorityGreaterThanOrEqualTo
Double getPriorityGreaterThanOrEqualTo()
Returns minimum priority (inclusive) in which the notifier will be executed.- Returns:
- minimum priority (inclusive) in which the notifier will be executed.
- Since:
- 10.0.0
-
getPriorityGreaterThan
Double getPriorityGreaterThan()
Returns minimum priority (exclusive) in which the notifier will be executed.- Returns:
- minimum priority (exclusive) in which the notifier will be executed.
- Since:
- 10.0.0
-
getPriorityLessThanOrEqualTo
Double getPriorityLessThanOrEqualTo()
Returns maximum priority (inclusive) in which the notifier will be executed.- Returns:
- maximum priority (inclusive) in which the notifier will be executed.
- Since:
- 10.0.0
-
getPriorityLessThan
Double getPriorityLessThan()
Returns maximum priority (exclusive) in which the notifier will be executed.- Returns:
- maximum priority (exclusive) in which the notifier will be executed.
- Since:
- 10.0.0
-
getClassName
String getClassName()
The name of notifier class to be used.- Returns:
- the class name.
- Since:
- 8.2.0
-
-