Package lumis.portal.activitystream
Interface IActivityProcessorConfig
-
public interface IActivityProcessorConfig
Represents an activity processor 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 String
getDescription()
Returns the description of this activity processor.String
getDisplayName()
Returns the display name of this activity processor.String
getId()
Returns the identifier of this activity processor.Collection<IActivityNotifierConfig>
getNotifierConfigs()
Returns a collection ofActivityProcessorConfig.NotifierConfig
in this activity processor.Collection<IActivityPrioritizerConfig>
getPrioritizerConfigs()
Returns a collection ofActivityProcessorConfig.PrioritizerConfig
in this activity processor.String
getStringsResourcePath()
Returns the strings resource path of this activity processor.
-
-
-
Method Detail
-
getId
String getId()
Returns the identifier of this activity processor.- Returns:
- the identifier.
- Since:
- 8.2.0
-
getDisplayName
String getDisplayName()
Returns the display name of this activity processor.- Returns:
- the display name.
- Since:
- 8.2.0
-
getDescription
String getDescription()
Returns the description of this activity processor.- Returns:
- the description.
- Since:
- 8.2.0
-
getStringsResourcePath
String getStringsResourcePath()
Returns the strings resource path of this activity processor.- Returns:
- the strings resource path.
- Since:
- 8.2.0
-
getPrioritizerConfigs
Collection<IActivityPrioritizerConfig> getPrioritizerConfigs()
Returns a collection ofActivityProcessorConfig.PrioritizerConfig
in this activity processor.- Returns:
- the prioritizers.
- Since:
- 8.2.0
-
getNotifierConfigs
Collection<IActivityNotifierConfig> getNotifierConfigs()
Returns a collection ofActivityProcessorConfig.NotifierConfig
in this activity processor.- Returns:
- the notifiers.
- Since:
- 8.2.0
-
-