workflow::install::create_assignee_pick_list_service_contract (private)

 workflow::install::create_assignee_pick_list_service_contract

Defined in packages/workflow/tcl/install-procs.tcl

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::install::create_service_contracts workflow::install::create_service_contracts (private) workflow::install::create_assignee_pick_list_service_contract workflow::install::create_assignee_pick_list_service_contract workflow::install::create_service_contracts->workflow::install::create_assignee_pick_list_service_contract acs_sc::contract::new_from_spec acs_sc::contract::new_from_spec (public) workflow::install::create_assignee_pick_list_service_contract->acs_sc::contract::new_from_spec workflow::service_contract::role_assignee_pick_list workflow::service_contract::role_assignee_pick_list (public) workflow::install::create_assignee_pick_list_service_contract->workflow::service_contract::role_assignee_pick_list

Testcases:
No testcase defined.
Source code:

    set assignee_pick_list_spec {
        description "Get the most likely assignees for a role in a workflow case"
        operations {
            GetObjectType {
                description "Get the object type for which this implementation is valid."
                output { object_type:string }
                iscachable_p "t"
            }
            GetPrettyName {
                description "Get the pretty name of this implementation."
                output { pretty_name:string }
                iscachable_p "t"
            }
            GetPickList {
                description "Get the most likely assignees for this case, object and role, as a Tcl list of party_ids"
                input {
                    case_id:integer
                    object_id:integer
                    role_id:integer
                }
                output {
                    party_ids:integer,multiple
                }
            }
        }
    }

    acs_sc::contract::new_from_spec  -spec [concat [list name [workflow::service_contract::role_assignee_pick_list]] $assignee_pick_list_spec]
XQL Not present:
PostgreSQL, Oracle
Generic XQL file:
packages/workflow/tcl/install-procs.xql

[ hide source ]
Show another procedure: