Interface IRuntimeConfigService
The RuntimeConfigService is used to query and update metadata specific to the runtime operation of the Workflow Service. It is used for querying and setting flexfield mappings, for querying the what Dynamic Assignment Functions are available, and for querying and setting the URIs used to display task details.
An instance of IRuntimeConfigService can be created by calling
IWorkflowServiceClient.getRuntimeConfigService()
.
An instance of IWorkflowServiceClient
can be created using the WorkflowServiceClientFactory
.
All the RuntimeConfigService methods take IWorkflowContext
as their first parameter.
The IWorkflowContext object allows the RuntimeConfigService to validate that the method
is being called by an authenticated user, and that the user has the necessary authority
to perform the action being requested. The IWorkflowContext object also contains information
on the user's timezone and locale. An IWorkflowContext object can be obtained by calling
ITaskQueryService.authenticate(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
or ITaskQueryService.createContext(javax.servlet.http.HttpServletRequest)
.
In most cases, any authenticated user can use the query methods, but only a user with specific privileges can use methods that update data.
Many of the parameters and return types of the methods are JAXB model
objects from the package oracle.bpel.services.workflow.runtimeconfig.model.
These objects do not have public constructors. To create
new instances of these objects you should use the appropriate methods on
oracle.bpel.services.workflow.runtimeconfig.model.ObjectFactory
.
- Since:
- 10.1.3.1.0
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enum
Enumeration that lists all the workflow extensions supported -
Method Summary
Modifier and TypeMethodDescriptionvoid
Bulk updates an approval group.To be used when bulk changes are made to the approval group content.void
createApprovalGroup
(IWorkflowContext wctx, ApprovalGroup ag) Creates an approval group
This API is available only if Approval Management Extension is enabledcreateAttributeLabel
(IWorkflowContext ctx, AttributeLabelType label) Creates a new label for a Task flexfield attribute from the suppliedAttributeLabel
object.void
createInGroup
(IWorkflowContext wctx, String approvalGroupName, ApprovalGroupMemberType approvalGroupMember) Create a member in approval group
This API is available only if Approval Management Extension is enabledcreatePayloadMapping
(IWorkflowContext ctx, PayloadMappingType mapping) Creates a mapping between a specific task defintion, and a task flexfield attribute, using an attribute label.void
deleteApprovalGroup
(IWorkflowContext wctx, String approvalGroupName) Deletes an approval group
This API is available only if Approval Management Extension is enabledvoid
deleteAttributeLabel
(IWorkflowContext ctx, String labelId) Deletes the attribute label with the suppled labelId.void
deleteFromGroup
(IWorkflowContext wctx, String approvalGroupName, ApprovalGroupMemberType approvalGroupMember) Delete a member from approval group
This API is available only if Approval Management Extension is enabledvoid
deletePayloadMapping
(IWorkflowContext ctx, PayloadMappingType mapping) Deletes the payload mapping described by the suppliedPayloadMapping
object.void
deleteTaskDisplayInfo
(IWorkflowContext ctx, TaskDisplayInfoType taskDisplayInfo) Deletes all instances of a particular task display information.getApprovalGroup
(IWorkflowContext wctx, String approvalGroupName) Gets an approval group
This API is available only if Approval Management Extension is enabledgetAttributeLabelUsages
(IWorkflowContext ctx, String attributeType) Gets a list of attribute labels and their usages by payload mappings.getBPMProcessPayloadMappings
(IWorkflowContext ctx, String processDN) Gets a list of payload flexfield mappings that have been defined for the specified, BPM Process in the form of aPayloadMappingsList
object.getConfiguration
(IWorkflowContext adminCtx) Returns the current workflow configuration settings as an org.w3c.dom.Element object.getDynamicAssignmentFunctions
(IWorkflowContext ctx, IDynamicAssignmentPattern.AssigneeType assigneeType) Gets a list of the currently registered dynamic assignment functions.Deprecated.Retrieves the internal server url from the fabric config manager.Retrieves the server url from the fabric config managerRetrieves the SOA server url.Get list of supported workflow extensionsgetTaskDisplayInfo
(IWorkflowContext ctx, String taskDefinitionNamespace, String compositeVersion, String applicationName) Deprecated.since 11.1.1.4.0.getTaskDisplayInfo
(IWorkflowContext ctx, String taskDefinitionNamespace, String compositeVersion, String partitionName, String applicationName) Deprecated.since 11.1.1.7.0.getTaskDisplayInfo
(IWorkflowContext ctx, String taskDefinitionNamespace, String compositeVersion, String partitionName, String applicationName, String formName) Retreives information relating to the URI to be used by client applications to display the task details for tasks of a particular type, in the form of aTaskDisplayInfoList
object.getTaskDisplayInfoByTaskDefinitionId
(IWorkflowContext ctx, String taskDefinitionId, String applicationName) Deprecated.Since 11.1.1.7.0 - usegetTaskDisplayInfoByTaskDefinitionId(IWorkflowContext, String, String, String)
instead.getTaskDisplayInfoByTaskDefinitionId
(IWorkflowContext ctx, String taskDefinitionId, String applicationName, String formName) Retreives information relating to the URI to be used by cleint applications to display the task details for tasks of a particular type, as a list of aTaskDisplayInfoType
objects.getTaskStatus
(IWorkflowContext ctx, String taskDefinitionId, String taskDefinitionNamespace, String compositeInstanceId) Get the status of a task instance corresponding to a particular task definition and composite instance.oracle.bpel.services.workflow.metadata.translatedvalues.model.TranslatedValues
getTranslatedValuesUsingTaskDefIds
(IWorkflowContext ctx, List<String> taskDefIds) getUCMInfo
(IWorkflowContext context, UcmRequest request) Get UCM configuration informationDeprecated.since 11.1.1.6.0 - usegetDynamicAssignmentFunctions(oracle.bpel.services.workflow.verification.IWorkflowContext, oracle.bpel.services.workflow.assignment.dynamic.IDynamicAssignmentPattern.AssigneeType)
with an assigneeType of AssigneeType.USER instead.getWorkflowPayloadMappings
(IWorkflowContext ctx, String workflowId) Gets a list of payload flexfield mappings that have been defined for the specified task type, in the form of aPayloadMappingsList
object.searchApprovalGroups
(IWorkflowContext wctx, String searchString, String searchType, String sortType) Fetches a list of matching approval group names
This API is available only if Approval Management Extension is enabledvoid
setTaskDisplayInfo
(IWorkflowContext ctx, String taskDefinitionNamespace, String compositeVersion, String partitionName, List<TaskDisplayInfoType> taskDisplayInfoList) Sets information relating to the URI to be used by client applications to display the task details for tasks of a particular type, in a particular partition, in the form of a list ofTaskDisplayInfoType
objects.void
setTaskDisplayInfo
(IWorkflowContext ctx, String taskDefinitionNamespace, String compositeVersion, TaskDisplayInfoList taskDisplayInfo) Deprecated.since 11.1.1.4.0.void
updateApprovalGroup
(IWorkflowContext wctx, ApprovalGroup ag) Updates an approval group
This API is available only if Approval Management Extension is enabledupdateAttributeLabel
(IWorkflowContext ctx, AttributeLabelType label) Updates an existing attribute label using the suppliedAttributeLabel
object.void
updateInGroup
(IWorkflowContext wctx, String approvalGroupName, ApprovalGroupMemberType approvalGroupMember) Update a member in approval group
This API is available only if Approval Management Extension is enabled
-
Method Details
-
getWorkflowPayloadMappings
PayloadMappingsList getWorkflowPayloadMappings(IWorkflowContext ctx, String workflowId) throws WorkflowException Gets a list of payload flexfield mappings that have been defined for the specified task type, in the form of aPayloadMappingsList
object. A payload mapping defines a mapping between Tasks of a particular type and a flexfield attribute column on the WFTASK table (such as TextAttribute1), via anAttributeLabel
. The mapping may also specify how the value of the flexfield attribute should be determined, either via an xpath expression or by specfifying a payload attribute. ThePayloadMappingsList
contains aList
ofPayloadMappingType
objects. SeecreatePayloadMapping(oracle.bpel.services.workflow.verification.IWorkflowContext, oracle.bpel.services.workflow.runtimeconfig.model.PayloadMappingType)
for a complete description of the PayloadMappingType object.This method should only be used for querying payload mappings for Human Workflow Tasks. The method
getBPMProcessPayloadMappings(oracle.bpel.services.workflow.verification.IWorkflowContext, java.lang.String)
should be used to query payload mappings for BPM Processes.- Parameters:
ctx
- an authenticatedIWorkflowContext
workflowId
-String
the TaskDefinitionId of the task type to query mappings for.- Returns:
PayloadMappingsList
contains aList
ofPayloadMappingType
objects.- Throws:
WorkflowException
- if some error condition occurs.
-
getBPMProcessPayloadMappings
List<PayloadMappingType> getBPMProcessPayloadMappings(IWorkflowContext ctx, String processDN) throws WorkflowException Gets a list of payload flexfield mappings that have been defined for the specified, BPM Process in the form of aPayloadMappingsList
object. A payload mapping defines a mapping between process instances (of a particular process) and a flexfield attribute column on the WFTASK table (such as TextAttribute1), via anAttributeLabel
. The mapping may also specify how the value of the flexfield attribute should be determined, either via an xpath expression or by specfifying a payload attribute. The method returns aList
ofPayloadMappingType
objects. SeecreatePayloadMapping(oracle.bpel.services.workflow.verification.IWorkflowContext, oracle.bpel.services.workflow.runtimeconfig.model.PayloadMappingType)
for a complete description of the PayloadMappingType object.This method should only be used for querying payload mappings for BPM Processes. The method
getWorkflowPayloadMappings(oracle.bpel.services.workflow.verification.IWorkflowContext, java.lang.String)
should be used to query payload mappings for Human Workflow Tasks.- Parameters:
ctx
- an authenticatedIWorkflowContext
processDN
-String
the unique id for a particular BPM Process deployment- Returns:
- a
List
ofPayloadMappingType
objects. - Throws:
WorkflowException
- if some error condition occurs.
-
createAttributeLabel
AttributeLabel createAttributeLabel(IWorkflowContext ctx, AttributeLabelType label) throws WorkflowException Creates a new label for a Task flexfield attribute from the suppliedAttributeLabel
object. Only users with the workflow.mapping.publicFlexField privilege can create attribute labels, and only users with the workflow.mapping.protectedFlexField privilege can create attribute labels for protected flexfields. An AttributeLabel is associated with a particularTask
flexfield. (Flexfield columns are the general purpose columns named TextAttribute1...20, NumberAttribute1...10, DateAttribute1...10, ProtectedTextAttribute1...20 and so on). An AttributeLabel allows a more meaningful name to be assigned to a flexfield column (for example, a label named "CustomerName" is more meaningful than "TextAttribute1").PayloadMappings
map task payload attributes to AttributeLabels - a single AttributeLabel can be associated with more than one PayloadMapping. This allows payload attributes from different tasks that share the same semantic meaning to be mapped to a common label. For example, a number of task types may contain payload attributes that contain a customer name - all of them can be mapped to a single "CustomerName" label.The label name can be used when displaying mapped flexfield columns for tasks of a particular type or types. The method
The AttributeLabel object contains the following properties:ITaskMetadataService.getTaskAttributesForTaskDefinition(oracle.bpel.services.workflow.verification.IWorkflowContext, java.lang.String)
will return a list of task attributes including any flexfield attributes that have been mapped for that task defintion. The flexfield attributes in the list will have a display name derived from the appropriate AttributeLabel name. It is possible to provide internationalization support for AttributeLabel names, by adding entries to the WorkflowLabels.properties file. See the Workflow Services chapter of the BPEL Process Manager Developer's Guide for more details.- id
String
Unique identifier for AttributeLabel. Automatically populated by API during create operation.- dataType
String
The type of flexfield column this label is for. Automatically maintained by API, will be populated with one of the following values after create operation:- "Text"
- "Form"
- "Url"
- "Date"
- "Number"
- labelName
String
The name for the label.- taskAttribute
String
The name of the flexfield attribute column the label is for. Should be one of the following values:- TextAttribute1..20
- FormAttribute1..10
- UrlAttribute1..10
- DateAttribute1..10
- NumberAttribute1..10
- ProtectedTextAttribute1..20
- ProtectedFormAttribute1..10
- ProtectedUrlAttribute1..10
- ProtectedDateAttribute1..10
- ProtectedNumberAttribute1..10
- descriptionOptional field used to provide aditional information on the label - for example, to note the origianl source for the data that is stored in attributes mapped to this label
- active Not used.
- workflowType Not used. Always set to
IWorkflowConstants.WF_TYPE
by API.- createdDate
Calendar
Date attribute label was created. Automatically maintained by API.- Parameters:
ctx
- an authenticatedIWorkflowContext
label
-AttributeLabelType
object defining attribute label to create.- Returns:
- the created
AttributeLabel
, with API maintained properties populated. - Throws:
WorkflowException
- if a non-admin user attempts to create an attribute label, or some other error condition occurs.
- id
-
updateAttributeLabel
AttributeLabel updateAttributeLabel(IWorkflowContext ctx, AttributeLabelType label) throws WorkflowException Updates an existing attribute label using the suppliedAttributeLabel
object. Only users with the workflow.mapping.publicFlexField privilege can update attribute labels, and only users with the workflow.mapping.protectedFlexField privilege can update attribute labels for protected flexfields. SeecreateAttributeLabel(oracle.bpel.services.workflow.verification.IWorkflowContext, oracle.bpel.services.workflow.runtimeconfig.model.AttributeLabelType)
for a description ofthe AttributeLabel object.- Parameters:
ctx
- an authenticatedIWorkflowContext
label
-AttributeLabelType
to update.- Returns:
- the updated
AttributeLabel
. - Throws:
WorkflowException
- if a non-admin user attempts to update an attribute label, or some other error condition occurs.
-
deleteAttributeLabel
Deletes the attribute label with the suppled labelId. Only users with Only users with the workflow.mapping.publicFlexField privilege can delete attribute labels, and only users with the workflow.mapping.protectedFlexField privilege can delete attribute labels for protected flexfields. When an attribute label is deleted, any payload mappings that use that label are also deleted.- Parameters:
ctx
- an authenticatedIWorkflowContext
labelId
-String
unique identifier for attribute label.- Throws:
WorkflowException
- if a non-admin user attempts to delete an attribute label, or some other error condition occurs.
-
getAttributeLabelUsages
AttributeLabelUsageList getAttributeLabelUsages(IWorkflowContext ctx, String attributeType) throws WorkflowException Gets a list of attribute labels and their usages by payload mappings. All attribute labels can be queried, or the query can be restricted to attribute labels for a specific flexfield type, by passing the appropriate value to the attributeType parameter:- null - if attributeType is null, all attribute labels will be returned
- "Public" - all attribute labels for public flexfields will be returned
- "Protected" - all attribute labels for protected flexfields will be returned
- "Text" - attribute labels for flexfields TextAttribute1..20 and ProtectedTextAttribute1..20 will be returned
- "Form" - attribute labels for flexfields FormAttribute1..10 and ProtectedFormAttribute1..10 will be returned
- "Url" - attribute labels for flexfields UrlAttribute1..10 and ProtectedUrlAttribute1..10 will be returned
- "Date" - attribute labels for flexfields DateAttribute1..10 and ProtectedDateAttribute1..10 will be returned
- "Number" - attribute labels for flexfields NumberAttribute1..10 and ProtectedNumberAttribute1..10 will be returned
- "PublicText" - attribute labels for flexfields TextAttribute1..20 will be returned
- "PublicForm" - attribute labels for flexfields FormAttribute1..10 will be returned
- "PublicUrl" - attribute labels for flexfields UrlAttribute1..10 will be returned
- "PublicDate" - attribute labels for flexfields DateAttribute1..10 will be returned
- "PublicNumber" - attribute labels for flexfields NumberAttribute1..10 will be returned
- "ProtectedText" - attribute labels for flexfields ProtectedTextAttribute1..20 will be returned
- "ProtectedForm" - attribute labels for flexfields ProtectedFormAttribute1..10 will be returned
- "ProtectedUrl" - attribute labels for flexfields ProtectedUrlAttribute1..10 will be returned
- "ProtectedDate" - attribute labels for flexfields ProtectedDateAttribute1..10 will be returned
- "ProtectedNumber" - attribute labels for flexfields ProtectedNumberAttribute1..10 will be returned
AttributeLabelUsageList
object contains aList
ofLabelUsages
objects. Each LabelUsages contains information about a particular label, and all its usages in payload mappings. A LabelUsages object contains the following properties:- label
AttributeLabelType
describing the attribute label. SeecreateAttributeLabel(oracle.bpel.services.workflow.verification.IWorkflowContext, oracle.bpel.services.workflow.runtimeconfig.model.AttributeLabelType)
for a description.- usages
List
ofLabelUsageType
objects. EachLabelUsageType
object describes a usage of the attribute label in a payload mapping, and has the following properties:- workflowId
String
TaskDefinitionId of the task definition whose payload is being mapped. - workflowName
String
name of the task definition whose payload is being mappied. - taskDefinitionNamespce
String
the task definition namespace of the task type the whose payload is being mapped - forAllTaskVersions boolean value indicating if this mapping is for this specific task definition version, or applies to all versions of the task definition.
- payloadAttribute
String
name of the payload attribute being mapped (if any). The payload attribute must be a simple type. To select a mapped value from a complex payload attribute, an xpath expression should be used instead. - xpath
XpathType
object describing the xpath expression (if any) used to select a value from the Task instance. The xpath expression must evaluate to a simple type. Xpath expressions are typically used to select a value from a complex payload attribute, but any valid xpath expression can be used (for example, an xpath function could be invoked). The XpathType object has the following properties:- expression
String
the xpath expression used to select the value, from within a task instance. For example:/task:task/task:payload/ord:order/ord:item/ord:itemName
- namespace
List
ofXpathType.NamespaceType
objects that describe the namespace prefixes used in the xpath expression, and the namespace URIs they correspond to. Each NamespaceType object has the following properties:- prefix
String
the prefix, for exampleord
- Uri
String
the namespace URI, for examplehttp://acme.com/xml/order
- prefix
- expression
- descriptionOptional field used to provide aditional information on this mapping - for example, to note the origianl source for the data that this mapping corresponds to.
- createdDate
Calendar
date the mapping was created.
- Parameters:
ctx
- an authenticatedIWorkflowContext
.attributeType
-String
null if all attributes are required, otherwise, which type of attributes should be queried.- Returns:
AttributeLabelUsageList
containing list of attribute labels and their usages in payload mappings.- Throws:
WorkflowException
- if some error condition occurs.
-
createPayloadMapping
PayloadMapping createPayloadMapping(IWorkflowContext ctx, PayloadMappingType mapping) throws WorkflowException Creates a mapping between a specific task defintion, and a task flexfield attribute, using an attribute label. Only users with the workflow.mapping.publicFlexField or workflow.mapping.protectedFlexField privilege can create a payload mapping.Note that mappings to protected flexfield attribute labels cannot be created using this API. Such mappings can only be defined in a task definition, and are created during deployment of the task component.
A payload mapping can define a mapping between a value in a task's payload and a flexfield attribute column on the WFTASK table (such as TextAttribute1). This mapping can be specified either as the name of a payload attribute, or as an xpath expression. When payload mapping exists for a particular Task type, the value of the Task payload attribute or xpath expression is written to the mapped flexfield column, allowing queries, views and rules to be defined using the mapped value.
If no payload attribute or xpath expression is specified, then the mapping is for labelling purposes only. It is up to workflow service clients to manually populate the appropriate flexfield attribute on the Task object (e.g. textAttribute1). The label specified in the mapping can still be used in queries etc., however.
Payload mappings are actually made between the a task type and an
AttributeLabel
. An AttributeLabel allows a more meaningful name to be assigned to a flexfield column, and allows different task types to map payload attributes to a common label.If a payload attribute is being mapped, it must be a simple type (for example,
xsd:string
. In order to map to values inside a payload attribute that is a complex type, an xpath expression is required instead.Payload mappings can be created for a specific version of a task definition, or for all versions of the task definition. If the mapping is created for a specific version, then every time a new version of the task definition is deployed, or every time an existing version of the task definition is redeployed, the payload mappings must be re-created for that new version. If the payload mapping is created for all versions of a task, there is no need to recreate the mapping for new versions or redeployments.
The mapping to be created is defined by the
PayloadMappingType
object supplied to the method. The attribute label being mapped to must already exist before creating the mapping. PayloadMappingType has the following properties:- workflowId
String
the TaskDefintionId of the task type the mapping is being created for. - taskDefinitionNamespce
String
the task definition namespace of the task type the mapping is being created for. Optional parameter, automatically populated by the API. - forAllTaskVersions boolean value indicating if this mapping is
for this specific task definition version, or should apply to all versions
of the task definition. Optional parameter, defaults to
false
. - label
AttributeLabelType
the attribute label being mapped to. Must already exist. SeecreateAttributeLabel(oracle.bpel.services.workflow.verification.IWorkflowContext, oracle.bpel.services.workflow.runtimeconfig.model.AttributeLabelType)
for a description. When creating (or deleting) a payload mapping, only the id property needs to be set on the AttributeLabelType object. - payloadAttribute
String
the name of the payload attribute that specifies the value that will be used to populate the flexfield column. This is optional, and the payload attribute must be a simple type. - xpath
XpathType
object describing the xpath expression (if any) used to select a value from the Task instance. The xpath expression must evaluate to a simple type. Xpath expressions are typically used to select a value from a complex payload attribute, but any valid xpath expression can be used (for example, an xpath function could be invoked). The XpathType object has the following properties:- expression
String
the xpath expression used to select the value, from within a task instance. For example:/task:task/task:payload/ord:order/ord:item/ord:itemName
- namespace
List
ofXpathType.NamespaceType
objects that describe the namespace prefixes used in the xpath expression, and the namespace URIs they correspond to. Each NamespaceType object has the following properties:- prefix
String
the prefix, for exampleord
- Uri
String
the namespace URI, for examplehttp://acme.com/xml/order
- prefix
- expression
- Parameters:
ctx
- an authenticatedIWorkflowContext
.mapping
-PayloadMapping
object describing the mapping to create.- Throws:
WorkflowException
- if a non-admin user attempts to create a payload mapping, or some other error condition occurs.
- workflowId
-
deletePayloadMapping
void deletePayloadMapping(IWorkflowContext ctx, PayloadMappingType mapping) throws WorkflowException Deletes the payload mapping described by the suppliedPayloadMapping
object. Only users with the workflow.mapping.publicFlexField or workflow.mapping.protectedFlexField privilege can delete a payload mapping. Note that mappings to protected flexfields cannot be deleted via this API - such mappings are specified in the task definitionat design time and are deleted only when the task component is undeployed. SeecreatePayloadMapping(oracle.bpel.services.workflow.verification.IWorkflowContext, oracle.bpel.services.workflow.runtimeconfig.model.PayloadMappingType)
for a description of the PayloadMapping object.- Parameters:
ctx
- an authenticatedIWorkflowContext
.mapping
-PayloadMapping
object describing the mapping to delete.- Throws:
WorkflowException
- if a non-admin user attempts to delete a payload mapping, or some other error condition occurs.
-
getDynamicAssignmentFunctions
List<DynamicAssignFunctionType> getDynamicAssignmentFunctions(IWorkflowContext ctx, IDynamicAssignmentPattern.AssigneeType assigneeType) throws WorkflowException Gets a list of the currently registered dynamic assignment functions.The list can be optionally restricted to only those functions that can select a specific assignee type, by providing the appropriate value for the assigneeType parameter. If this parameter is
null
, an unrestricted list of all assignment functions will be returned.The method returns a List of
DynamicAssignFunctionType
objects. These have the following properties:- name
String
name of dynamic assignment function.- label
String
human-readable label for dynamic assignment function. If the implementation of this function does not supply a label, the dynamic assignment function name is used as the label. May be localized appropriately for the supplied IWorkflowContext.- description
String
short, human-readable description of the function, if the implementation provides one. May be localized appropriately for the supplied IWorkflowContext.- supportedAssigneeTypes contains a List of the assignee types (USER, GROUP, APPROLE) that the function can support.
- parameters contains a List of
DynamicAssignmentParameterType
objects that describe the input parameters (if any) for the function. These have the following properties:- name
String
name of the parameter - parameterType
String
the type of parameter (STRING, NUMBER) - mandatory boolean value indicating if parameter is mandatory or optional
- defaultValue
String
default value for the parameter, if the implementation provides one. - label
String
human-readable label for the parameter. If the implementation of this function does not supply a label, the dynamic parameter name is used as the label. May be localized appropriately for the supplied IWorkflowContext. - description
String
short, human-readable description of the parameter, if the implementation provides one. May be localized appropriately for the supplied IWorkflowContext.
- Parameters:
ctx
- an authenticatedIWorkflowContext
. used to determine appropraite Locale for user-readable labels.assigneeType
- a value ofIDynamicAssignmentPattern.AssigneeType
that specifies what assignee type (user, group, application role) the queried assignment functions should be able to select. Ifnull
, then all assignment functions will be returned.- Returns:
- a List of
DynamicAssignFunctionType
objects. - Throws:
WorkflowException
- if an invalid workflow context is provided or some other error condition occurs.
- name
-
getUserDynamicAssignmentFunctions
@Deprecated DynamicAssignFunctionList getUserDynamicAssignmentFunctions(IWorkflowContext ctx) throws WorkflowException Deprecated.since 11.1.1.6.0 - usegetDynamicAssignmentFunctions(oracle.bpel.services.workflow.verification.IWorkflowContext, oracle.bpel.services.workflow.assignment.dynamic.IDynamicAssignmentPattern.AssigneeType)
with an assigneeType of AssigneeType.USER instead.- Parameters:
ctx
- an authenticatedIWorkflowContext
. used to determine appropraite Locale for user-readable labels.- Returns:
DynamicAssignFunctionList
contains aList
ofDynamicAssignFunctionType
objects.- Throws:
WorkflowException
- if some error condition occurs.
-
getGroupDynamicAssignmentFunctions
@Deprecated DynamicAssignFunctionList getGroupDynamicAssignmentFunctions(IWorkflowContext ctx) throws WorkflowException Deprecated.since 11.1.1.6.0 - usegetDynamicAssignmentFunctions(oracle.bpel.services.workflow.verification.IWorkflowContext, oracle.bpel.services.workflow.assignment.dynamic.IDynamicAssignmentPattern.AssigneeType)
with an assigneeType of AssigneeType.GROUP instead.- Parameters:
ctx
- an authenticatedIWorkflowContext
. used to determine appropraite Locale for user-readable labels.- Returns:
DynamicAssignFunctionList
contains aList
ofDynamicAssignFunctionType
objects.- Throws:
WorkflowException
- if somem error condition occurs.
-
getConfiguration
Returns the current workflow configuration settings as an org.w3c.dom.Element object.Method can only be invoked by authenticated users with workflow.admin level permissions.
Note that the returned object cannot be used for setting configuration settings. WorkflowConfiguration chnages must be made via config MBeans or via Enterprise Manager.
Returned DOM Element can be converted to a WorkflowConfigurations object using the method
RuntimeConfigUtil.getWorkflowConfigurationsFromDOMElement(org.w3c.dom.Element)
, but the classpath for the client must include the soa-infra-mgmt.jar file for this to work.- Parameters:
adminCtx
- authenticatedIWorkflowContext
for a user with andministrator privileges.- Returns:
WorkflowConfigurations
object representing the current state of workflow configuration settings.- Throws:
WorkflowException
- if non-admin user attempts to excecute method, or some other error condition occurs.
-
getTaskDisplayInfo
@Deprecated TaskDisplayInfoList getTaskDisplayInfo(IWorkflowContext ctx, String taskDefinitionNamespace, String compositeVersion, String applicationName) throws WorkflowException Deprecated.since 11.1.1.4.0. UsegetTaskDisplayInfo(IWorkflowContext,String,String,String,String,String)
instead.This method is deprecated - the methods
getTaskDisplayInfo(IWorkflowContext, String, String, String, String, String)
orgetTaskDisplayInfoByTaskDefinitionId(IWorkflowContext, String, String, String)
should be used instead. This method will only query the task display info for the partition named 'default', and the form named 'default'.- Parameters:
ctx
- an authenticatedIWorkflowContext
.taskDefinitionNamespace
-String
namespace that identifies the task type to query task display info for.compositeVersion
-String
The version of the composite the task type is located in. Ifnull
, then any placeholder TaskDisplayInfo entries that do not apply to a specific composite version are returned.applicationName
-String
the name of the client application to query task display info for. Ifnull
, then task display info for all applications is returned.- Returns:
- TaskDisplayInfoList
TaskDisplayInfoList
object contains aList
ofTaskDisplayInfoType
objects. - Throws:
WorkflowException
- if some error condition occurs.
-
getTaskDisplayInfo
@Deprecated List<TaskDisplayInfoType> getTaskDisplayInfo(IWorkflowContext ctx, String taskDefinitionNamespace, String compositeVersion, String partitionName, String applicationName) throws WorkflowException Deprecated.since 11.1.1.7.0. UsegetTaskDisplayInfo(IWorkflowContext,String,String,String,String, String)
instead.This method is deprecated - the methods
getTaskDisplayInfo(IWorkflowContext, String, String, String, String, String)
orgetTaskDisplayInfoByTaskDefinitionId(IWorkflowContext, String, String, String)
should be used instead. This method will only query the task display info for forms named 'default'.- Parameters:
ctx
- an authenticatedIWorkflowContext
.taskDefinitionNamespace
-String
namespace that identifies the task type to query task display info for.compositeVersion
-String
The version of the composite the TaskDisplayInfo applies to. Ifnull
, then any placeholder TaskDisplayInfo entries that do not apply to a specific composite version are returned.partitionName
-String
the name of the partition for which the TaskDisplayInfo applies. Ifnull
, then any placeholder TaskDisplayInfo objects that apply to all partitions are returned.applicationName
-String
the name of the client application to query task display info for. Ifnull
, then TaskDisplayInfo entries for all applications is returned.- Returns:
- TaskDisplayInfoList
TaskDisplayInfoList
object contains aList
ofTaskDisplayInfoType
objects. - Throws:
WorkflowException
- if some error condition occurs.
-
setTaskDisplayInfo
@Deprecated void setTaskDisplayInfo(IWorkflowContext ctx, String taskDefinitionNamespace, String compositeVersion, TaskDisplayInfoList taskDisplayInfo) throws WorkflowException Deprecated.since 11.1.1.4.0. UsesetTaskDisplayInfo(IWorkflowContext, String, String, String, List)
instead.This method has been deprecated.setTaskDisplayInfo(IWorkflowContext, String, String, String, List)
should be used instead. Task display information created by this method will apply for a particular task type across all partitions, unless task display information has beeen created for a specific partition, (by the methodsetTaskDisplayInfo(IWorkflowContext, String, String, String, List)
), in which case the partition-specific information takes precendence.The TaskDisplayInfoList object contains a
List
ofTaskDisplayInfoType
objects.- Parameters:
ctx
- an authenticatedIWorkflowContext
.taskDefinitionNamespace
-String
namespace that identifies the task type to set task display info for.compositeVersion
-String
The version of the composite the task type is located in. If null, the currently active composite version will be used, and task display info will be associated with all subsequent deployments of the task type.taskDisplayInfo
-TaskDisplayInfoList
object contains aList
ofTaskDisplayInfoType
objects.- Throws:
WorkflowException
- if non-admin user attempts to set task display info, or some other error condition occurs.
-
setTaskDisplayInfo
void setTaskDisplayInfo(IWorkflowContext ctx, String taskDefinitionNamespace, String compositeVersion, String partitionName, List<TaskDisplayInfoType> taskDisplayInfoList) throws WorkflowException Sets information relating to the URI to be used by client applications to display the task details for tasks of a particular type, in a particular partition, in the form of a list ofTaskDisplayInfoType
objects. Only a user with the workflow.admin privilege may set the task display information. The task type must be specified by taskDefinitionNamespace and optionally, compositeVersion.The task display information overwrites any existing information - any TaskDisplayInfo entries currently stored for the specified composite & partition will be deleted, and the new list of entries written.
If no partition name is supplied, then the task display info will apply across all partitions. If a partition name is supplied, then the task display info applies only to tasks in that particular partition.
If no compositeVersion is specified, then the active version of the composite(s) in the relevant partition(s) is used, and this task display info will be used for any subsequent deployments of the task type to the specified partition. If no compositeVersion is specified, and there are no composites deployed for a partition, then the information is still recorded, and will be set with the active version of the composite when the composite is deployed. This allows task display applications to be deployed prior to the composite.
The properties of TaskDisplayInfoType are:
- applicationName
String
The name of the client application this display info corresponds to. Different client applications may choose to display task details differently, for example for displaying on a mobile device. The worklist application that ships with the product uses the applicationName ""worklist"", and the applicationName is defaulted to this value if it has not been set.- formName
String
The form name used to identify this task display information. Multiple forms can be deployed to display the details for a given task type and client application, and the task instance can specifiy which form should be used using the form name. For, example refer toITaskService.decomposeTask(oracle.bpel.services.workflow.verification.IWorkflowContext, java.lang.String, oracle.bpel.services.workflow.metadata.routingslip.model.RoutingSlip, oracle.bpel.services.workflow.task.model.DecomposeTaskInfo)
which allows a specific form name to be specfiied for decomposed task instances. If no form name is specified, it will be defaulted to ""default"".- formDisplayName
String
A translatable display name for the form. Read-only field, set on query by the server to a value looked up from a resource bundle. Any value for this parameter passed to setTaskDisplayInfo will be ignored.Value can be specified in either the resource bundle for the task type, or in the global WorkflowLabels resource bundle, and should use a key of the form
TASKFORM_DISPLAY_NAME.{formName}
. For example, the key for the "default" form isTASKFORM_DISPLAY_NAME.default
.Values specified in the task resource bundle take precedence over values specified in the global bundle.
- formDescription
String
A translatable description of for the form. Read-only field, set on query by the server to a value looked up from a resource bundle. Any value for this parameter passed to setTaskDisplayInfo will be ignored.Value can be specified in either the resource bundle for the task type, or in the global WorkflowLabels resource bundle, and should use a key of the form
TASKFORM_DESCRIPTION.{formName}
. For example, the key for the "default" form isTASKFORM_DESCRIPTION.default
.Values specified in the task resource bundle take precedence over values specified in the global bundle.
- uri
String
the uri to the task display page.- hostname
String
the name of the host that hosts the task display page.- httpPort
String
the port number for http requests to the host.- httpsPort
String
the port number for https requests to the host.- Parameters:
ctx
- an authenticatedIWorkflowContext
. Authenticated user should have admin privileges.taskDefinitionNamespace
- namespace that identifies the task type to set task display info for.compositeVersion
- The version of the composite the task type is located in. If null, the currently active composite version for the partition will be used. Identifies specific composite version to set task display info for.partitionName
- The partition this task display info applies to. If no partition name is supplied, this task display info applies to the task type in all partitions, apart from partitions that already have their own task display info specified for the task type.taskDisplayInfoList
- List ofTaskDisplayInfoType
objects.- Throws:
WorkflowException
- if non-admin user attempts to set task display info, or some other error condition occurs.
- applicationName
-
deleteTaskDisplayInfo
void deleteTaskDisplayInfo(IWorkflowContext ctx, TaskDisplayInfoType taskDisplayInfo) throws WorkflowException Deletes all instances of a particular task display information. Delete is performed across all namespaces, versions and partitions where the task display info is found. Any entries that match the application, hostname, uri and http or https port are deleted. Typically called when a particular task form application is undeployed, and needs to be removed from any component deployments that refer to it.- Parameters:
ctx
- an authenticatedIWorkflowContext
. Authenticated user should have admin privileges.taskDisplayInfo
- theTaskDisplayInfoType
to delete.- Throws:
WorkflowException
- if non-admin user attempts to delete task display info, or some other error condition occurs.
-
getTaskDisplayInfoByTaskDefinitionId
@Deprecated List<TaskDisplayInfoType> getTaskDisplayInfoByTaskDefinitionId(IWorkflowContext ctx, String taskDefinitionId, String applicationName) throws WorkflowException Deprecated.Since 11.1.1.7.0 - usegetTaskDisplayInfoByTaskDefinitionId(IWorkflowContext, String, String, String)
instead.This method is deprecated - usegetTaskDisplayInfoByTaskDefinitionId(IWorkflowContext, String, String, String)
instead. This method will return TaskDisplayInfo objects with form name of ""default"".- Parameters:
ctx
- an authenticatedIWorkflowContext
.taskDefinitionId
- the unique ID of the task definition.applicationName
-String
the name of the client application to query task display info for. Ifnull
, then task display info for all applications is returned.- Returns:
- TaskDisplayInfoList a
List
ofTaskDisplayInfoType
objects. - Throws:
WorkflowException
-
getTaskDisplayInfoByTaskDefinitionId
List<TaskDisplayInfoType> getTaskDisplayInfoByTaskDefinitionId(IWorkflowContext ctx, String taskDefinitionId, String applicationName, String formName) throws WorkflowException Retreives information relating to the URI to be used by cleint applications to display the task details for tasks of a particular type, as a list of aTaskDisplayInfoType
objects. The task type must be specified by taskDefinitionId.The method can retreive the task display information for all client applications (by passing a null value to the applicationName parameter), or for a specific client application (by passing the application name to the applicationName parameter).
The method can also retreive the task display information for all forms (by passing a null value to the formName parameter), or for a specific form (by passing the form name to the applicationName parameter).
The properties of TaskDisplayInfoType are:
- applicationName
String
The name of the client application this display info corresponds to. Different client applications may choose to display task details differently, for example for displaying on a mobile device. The worklist application that ships with the product uses the applicationName ""worklist"".- formName
String
The form name used to identify this task display information. Multiple forms can be deployed to display the details for a given task type and client application, and the task instance can specifiy which form should be used using the form name. For, example refer toITaskService.decomposeTask(oracle.bpel.services.workflow.verification.IWorkflowContext, java.lang.String, oracle.bpel.services.workflow.metadata.routingslip.model.RoutingSlip, oracle.bpel.services.workflow.task.model.DecomposeTaskInfo)
which allows a specific form name to be specfiied for decomposed task instances. If no form name was specified, it will be defaulted to ""default"".- formDisplayName
String
A translatable display name for the form. Read-only field, set on query by the server to a value looked up from a resource bundle.Value can be specified in either the resource bundle for the task type, or in the global WorkflowLabels resource bundle, and should use a key of the form
TASKFORM_DISPLAY_NAME.{formName}
. For example, the key for the "default" form isTASKFORM_DISPLAY_NAME.default
.Values specified in the task resource bundle take precedence over values specified in the global bundle.
- formDescription
String
A translatable description of for the form. Read-only field, set on query by the server to a value looked up from a resource bundle.Value can be specified in either the resource bundle for the task type, or in the global WorkflowLabels resource bundle, and should use a key of the form
TASKFORM_DESCRIPTION.{formName}
. For example, the key for the "default" form isTASKFORM_DESCRIPTION.default
.Values specified in the task resource bundle take precedence over values specified in the global bundle.
- uri
String
the uri to the task display page.- hostname
String
the name of the host that hosts the task display page.- httpPort
String
the port number for http requests to the host.- httpsPort
String
the port number for https requests to the host.- Parameters:
ctx
- an authenticatedIWorkflowContext
.taskDefinitionId
- the unique ID of the task definition.applicationName
-String
the name of the client application to query task display info for. Ifnull
, then task display info for all applications is returned.formName
-String
the name of the form to query the task display info for. Ifnull
, then task display infor for all form names is returned.- Returns:
- TaskDisplayInfoList a
List
ofTaskDisplayInfoType
objects. - Throws:
WorkflowException
- applicationName
-
getTaskStatus
TaskStatus getTaskStatus(IWorkflowContext ctx, String taskDefinitionId, String taskDefinitionNamespace, String compositeInstanceId) throws WorkflowException Get the status of a task instance corresponding to a particular task definition and composite instance. The task definitino must be identified by passing either the taskDefinitionId or the taskDefinitionNamespace. Method returns aTaskStatus
object that has the following parameters:- status
String
the status of the task instance.- taskId
String
unique identifier for the task instance.- Parameters:
ctx
- an authenticatedIWorkflowContext
.taskDefinitionId
-String
the unique identifier for the task type to get task status info for.taskDefinitionNamespace
-String
namespace that identifies the task type to get task status info for.compositeInstanceId
- aString
the unique identifier for the composite instance.- Returns:
TaskStatus
object.- Throws:
WorkflowException
- if some error condition occurs.
- status
-
createApprovalGroup
Creates an approval group
This API is available only if Approval Management Extension is enabled- Parameters:
wctx
- an authenticatedIWorkflowContext
ag
- an approval groupApprovalGroup
- Throws:
WorkflowException
- in case of error
-
updateApprovalGroup
Updates an approval group
This API is available only if Approval Management Extension is enabled- Parameters:
wctx
- an authenticatedIWorkflowContext
ag
- an approval groupApprovalGroup
- Throws:
WorkflowException
- in case of error
-
bulkUpdateApprovalGroup
Bulk updates an approval group.To be used when bulk changes are made to the approval group content.
This API is available only if Approval Management Extension is enabled- Parameters:
wctx
- an authenticatedIWorkflowContext
ag
- an approval groupApprovalGroup
- Throws:
WorkflowException
- in case of error
-
getApprovalGroup
ApprovalGroup getApprovalGroup(IWorkflowContext wctx, String approvalGroupName) throws WorkflowException Gets an approval group
This API is available only if Approval Management Extension is enabled- Parameters:
wctx
- an authenticatedIWorkflowContext
approvalGroupName
- internal name of the group- Returns:
- the ApprovalGroup object
- Throws:
WorkflowException
- in case of error
-
deleteApprovalGroup
Deletes an approval group
This API is available only if Approval Management Extension is enabled- Parameters:
wctx
- an authenticatedIWorkflowContext
approvalGroupName
- internal Name of the Group- Throws:
WorkflowException
- in case of error
-
createInGroup
void createInGroup(IWorkflowContext wctx, String approvalGroupName, ApprovalGroupMemberType approvalGroupMember) throws WorkflowException Create a member in approval group
This API is available only if Approval Management Extension is enabled- Parameters:
wctx
- an authenticatedIWorkflowContext
approvalGroupName
- internal Name of the GroupapprovalGroupMember
- ApprovalGroupMemberType objectApprovalGroupMemberType
- Throws:
WorkflowException
-
updateInGroup
void updateInGroup(IWorkflowContext wctx, String approvalGroupName, ApprovalGroupMemberType approvalGroupMember) throws WorkflowException Update a member in approval group
This API is available only if Approval Management Extension is enabled- Parameters:
wctx
- an authenticatedIWorkflowContext
approvalGroupMember
- ApprovalGroupMemberType objectApprovalGroupMemberType
- Throws:
WorkflowException
-
deleteFromGroup
void deleteFromGroup(IWorkflowContext wctx, String approvalGroupName, ApprovalGroupMemberType approvalGroupMember) throws WorkflowException Delete a member from approval group
This API is available only if Approval Management Extension is enabled- Parameters:
wctx
- an authenticatedIWorkflowContext
approvalGroupName
- internal Name of the GroupapprovalGroupMember
- ApprovalGroupMemberType objectApprovalGroupMemberType
- Throws:
WorkflowException
-
searchApprovalGroups
ApprovalGroupNameList searchApprovalGroups(IWorkflowContext wctx, String searchString, String searchType, String sortType) throws WorkflowException Fetches a list of matching approval group names
This API is available only if Approval Management Extension is enabled- Parameters:
wctx
- an authenticatedIWorkflowContext
searchString
- String for the search. Can contain wild card characters.searchType
- GROUP or USER. If GROUP, it should return all the groups for the search string. If USER, it should return all the groups in which that user (the search string) is present. By default this parameter is set to GROUP.sortType
- ASC, DSC or null. If ASC, it should return the groups sorted in ascending order of name. If DSC, it should return the groups in descending order of name. If null, it should return the groups in the order they were created.- Returns:
- ApprovalGroupNameList object -- a List of matching approval group names or null if nothing found
- Throws:
WorkflowException
-
getServerURLFromFabricConfig
Retrieves the SOA server url. If FusionAppsFrontendHostUrl has been configured in the HWF configuration MBeans, that value is returned, otherwise the ServerUrl configured in the Fabric configuration MBeans is returned.- Returns:
- String -- a server url
- Throws:
WorkflowException
- in case of error
-
getInternalServerURL
Retrieves the internal server url from the fabric config manager. Value is retrieved directly from the value of ServerUrl configured in the Fabric configuration MBeans - any value configured for FusionAppsFrontendHostUrl in the HWF configuration MBeans is ignored.- Returns:
- String -- a server url
- Throws:
WorkflowException
- in case of error
-
getJndiURLFromFabricConfig
Retrieves the server url from the fabric config manager- Returns:
- String -- a server url
- Throws:
WorkflowException
- in case of error
-
getSupportedWorkflowExtensions
List<IRuntimeConfigService.WorkflowExtension> getSupportedWorkflowExtensions() throws WorkflowExceptionGet list of supported workflow extensions- Returns:
- List<WorkflowExtension> List of supported workflow extensions
- Throws:
WorkflowException
- in case of error
-
getUCMInfo
Get UCM configuration information- Parameters:
request
- - UCMRequest object which contains request information.- Returns:
- UCMResponse - Response object which contains response of the request
- Throws:
WorkflowException
- in case of error
-
getTaskDisplayInfo
List<TaskDisplayInfoType> getTaskDisplayInfo(IWorkflowContext ctx, String taskDefinitionNamespace, String compositeVersion, String partitionName, String applicationName, String formName) throws WorkflowException Retreives information relating to the URI to be used by client applications to display the task details for tasks of a particular type, in the form of aTaskDisplayInfoList
object. The task type must be specified by taskDefinitionNamespace and/or compositeVersion.The method can retreive the task display information for all client applications (by passing a null value to the applicationName parameter), or for a specific client application (by passing the application name to the applicationName parameter).
The method can also retreive the task display information for all forms (by passing a null value to the formName parameter), or for a specific form (by passing the form name to the applicationName parameter).
If the partitionName is specified, then the information pertaining to that specific partition will be retrieved. Otherwise, placeholder TaskDisplayInfo entries (if any) that apply across all partitions are returned.
If the compositeVersion is specified, then the information pertaining to that specific compositeVersion will be retrieved. Otherwsie, placeholder TaskDisplayInfo entries (if any) that are not targeted to a specific compositeVersion are returned.
The method returns a List of
TaskDisplayInfoType
objects. The properties of TaskDisplayInfoType are:- applicationName
String
The name of the client application this display info corresponds to. Different client applications may choose to display task details differently, for example for displaying on a mobile device. The worklist application that ships with the product uses the applicationName ""worklist"".- formName
String
The form name used to identify this task display information. Multiple forms can be deployed to display the details for a given task type and client application, and the task instance can specifiy which form should be used using the form name. For, example refer toITaskService.decomposeTask(oracle.bpel.services.workflow.verification.IWorkflowContext, java.lang.String, oracle.bpel.services.workflow.metadata.routingslip.model.RoutingSlip, oracle.bpel.services.workflow.task.model.DecomposeTaskInfo)
which allows a specific form name to be specfiied for decomposed task instances. If no form name was specified, it will be defaulted to ""default"".- formDisplayName
String
A translatable display name for the form. Read-only field, set on query by the server to a value looked up from a resource bundle.Value can be specified in either the resource bundle for the task type, or in the global WorkflowLabels resource bundle, and should use a key of the form
TASKFORM_DISPLAY_NAME.{formName}
. For example, the key for the "default" form isTASKFORM_DISPLAY_NAME.default
.Values specified in the task resource bundle take precedence over values specified in the global bundle.
- formDescription
String
A translatable description of for the form. Read-only field, set on query by the server to a value looked up from a resource bundle.Value can be specified in either the resource bundle for the task type, or in the global WorkflowLabels resource bundle, and should use a key of the form
TASKFORM_DESCRIPTION.{formName}
. For example, the key for the "default" form isTASKFORM_DESCRIPTION.default
.Values specified in the task resource bundle take precedence over values specified in the global bundle.
Only administrator can pass "*" values for namespace, compositeversion and partition.
- uri
String
the uri to the task display page.- hostname
String
the name of the host that hosts the task display page.- httpPort
String
the port number for http requests to the host.- httpsPort
String
the port number for https requests to the host.- Parameters:
ctx
- an authenticatedIWorkflowContext
.taskDefinitionNamespace
-String
namespace that identifies the task type to query task display info for. If taskDefinitionNamespace is "*", then all namespaces are included in the result. If namespace is "*" and application name is null, then only "worklist" application results are returned.compositeVersion
-String
The version of the composite the TaskDisplayInfo applies to. Ifnull
, then any placeholder TaskDisplayInfo entries that do not apply to a specific composite version are returned. If compositeVersion is "*, then all composite versions are included in the result.partitionName
-String
the name of the partition for which the TaskDisplayInfo applies. Ifnull
, then any placeholder TaskDisplayInfo objects that apply to all partitions are returned. If partitionName is "*", then all partitions are included in the result.applicationName
-String
the name of the client application to query task display info for. Ifnull
, then TaskDisplayInfo entries for all applications are returned.formName
-String
the specific form name to query task display info for. Ifnull
, then TaskDisplayInfo entries for all forms are returned.- Returns:
- TaskDisplayInfoList
TaskDisplayInfoList
object contains aList
ofTaskDisplayInfoType
objects. - Throws:
WorkflowException
- if some error condition occurs.
- applicationName
-
getTranslatedValuesUsingTaskDefIds
oracle.bpel.services.workflow.metadata.translatedvalues.model.TranslatedValues getTranslatedValuesUsingTaskDefIds(IWorkflowContext ctx, List<String> taskDefIds) throws WorkflowException - Throws:
WorkflowException
-
getDynamicAssignmentFunctions(oracle.bpel.services.workflow.verification.IWorkflowContext, oracle.bpel.services.workflow.assignment.dynamic.IDynamicAssignmentPattern.AssigneeType)
with an assigneeType of AssigneeType.GROUP instead.