Interface IRestrictedAssignmentCallback
public interface IRestrictedAssignmentCallback
An interface that describes the callback to restrict assignment and routing.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionoracle.bpel.services.workflow.task.IRestrictedAssignees
getPermittedAssignees
(Task task, Map propertyMap, String currentUser, String identityContext, String operation) Api that returns the list of permitted assignees given the task, currentUser and the operation.getRestrictedOperations
(Task task, Map propertyMap, String currentUser, String identityContext) Api that returns the list of operations restricted by the callback.
-
Method Details
-
getPermittedAssignees
oracle.bpel.services.workflow.task.IRestrictedAssignees getPermittedAssignees(Task task, Map propertyMap, String currentUser, String identityContext, String operation) Api that returns the list of permitted assignees given the task, currentUser and the operation.- Parameters:
task
- The task under considerationpropertyMap
- custom propertied for the call backcurrentUser
- the user who is trying to perform the operationoperation
- The operation. One of the constants above.- Returns:
- A IRestrictedAssignees object containing a list of permitted Task Assignees.
-
getRestrictedOperations
List<IRestrictedAssignmentCallback.OperationType> getRestrictedOperations(Task task, Map propertyMap, String currentUser, String identityContext) Api that returns the list of operations restricted by the callback.- Parameters:
task
- The task under considerationpropertyMap
- custom propertied for the call backcurrentUser
- the user who is trying to perform the operation- Returns:
- A list of restricted operations as Strings.
-