workflow::install::create_action_side_effect_service_contract (private)

 workflow::install::create_action_side_effect_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_action_side_effect_service_contract workflow::install::create_action_side_effect_service_contract workflow::install::create_service_contracts->workflow::install::create_action_side_effect_service_contract acs_sc::contract::new_from_spec acs_sc::contract::new_from_spec (public) workflow::install::create_action_side_effect_service_contract->acs_sc::contract::new_from_spec workflow::service_contract::action_side_effect workflow::service_contract::action_side_effect (public) workflow::install::create_action_side_effect_service_contract->workflow::service_contract::action_side_effect

Testcases:
No testcase defined.
Source code:

    set side_effect_spec {
        description "Get the name of the side effect to create action"
        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"
            }
            DoSideEffect {
                description "Do the side effect"
                input {
                    case_id:integer
                    object_id:integer
                    action_id:integer
                    entry_id:integer
                }
            }
        } 
    }  
    
    acs_sc::contract::new_from_spec  -spec [concat [list name [workflow::service_contract::action_side_effect]] $side_effect_spec]
XQL Not present:
PostgreSQL, Oracle
Generic XQL file:
packages/workflow/tcl/install-procs.xql

[ hide source ]
Show another procedure: