How to Configure Display Names for Dynamic Assignment Patterns
The runtime config service provides methods for returning a list of available user and group dynamic assignment patterns. These patterns return both the name of the pattern, and a user-displayable label and description for the pattern and its parameters. The patterns support localization of the display name, so that it displays in the appropriate language for the context user. These patterns are used by Oracle BPM Worklist and the JDeveloper Human Task Editor to show a list of available dynamic assignment patterns.
The dynamic assignment framework provides methods allowing pattern implementations to provide human-readable display names and descriptions for patterns and their parameters.
The out-of-the-box pattern implementations, and custom implementations that extend the AbstractDynamicPattern
class use the WorkflowLabels.properties
resource bundle file to configure these display strings.
To configure display names for dynamic assignment patterns:
Specify display names and descriptions (and appropriate translations) for your dynamic assignment patterns and their parameters by adding entries to the resource property file WorkflowLabels.properties
, and associated resource property files in other languages. This file should be placed in the class path identified in the workflow configuration parameter workflowCustomizationsClasspathURL
, at the path
oracle/bpel/services/workflow/resource/WorkflowLabels.properties
Entries for dynamic assignment patterns must be of the following form:
DYN_ASSIGN_FN.[pattern name]=Pattern Display Name DYN_ASSIGN_DESCR.[pattern name]=Function Description DYN_ASSIGN_PARAM_LABEL.[pattern name].[parameter name]=Parameter Display Name DYN_ASSIGN_PARAM_LABEL.[pattern name].[parameter name]=Parameter Description
For instance, the entries for the MOST_PRODUCTIVE
pattern are:
DYN_ASSIGN_FN.MOST_PRODUCTIVE = Most Productive DYN_ASSIGN_DESCR.MOST_PRODUCTIVE = Picks the user, group or application role that has completed the highest number of tasks within a certain time period. For group and application roles the total number of tasks completed by all the users who are direct members of that group or role are counted. The time period to use can be specified using the Time Period parameter. If no time period is specified, then the default value specified in the dynamic assignment configuration for the instance is used. DYN_ASSIGN_PARAM_LABEL.MOST_PRODUCTIVE.TIME_PERIOD = Time Period DYN_ASSIGN_PARAM_DESCR.MOST_PRODUCTIVE.TIME_PERIOD = The previous number of days over which to count the number of completed tasks. If not specified, the default value defined in the human workflow dynamic assignment configuration is used.
Adding entries to these files for dynamic assignment patterns is optional. If no entry is present in the file, then the name of the function (for example, ROUND_ROBIN
') is used instead.