Activiti-Rest-Client

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

    
        PUT runtime/tasks/:taskId

 task_variables

      Get all variables for a task
    
      Parameters:
    
        taskId
        scope (global|local)
    
      equal to rest call:
    
        GET runtime/tasks/:taskId/variables?scope=:scope

 task_variable

      Get one variable for a task
    
      Parameters:
    
        taskId
        scope (global|local)
    
      equal to rest call:
    
        GET runtime/tasks/:taskId/variables/:variableName?scope=:scope

 task_identity_links

      Get all identity links for a task
    
      Parameters:

lib/Activiti/Rest/Client.pm  view on Meta::CPAN

  );
  Activiti::Rest::Response->from_http_response($res);
}
=head2 task_variables

  Get all variables for a task

  Parameters:

    taskId
    scope (global|local)

  equal to rest call:

    GET runtime/tasks/:taskId/variables?scope=:scope

=cut

sub task_variables {
  my($self,%args)=@_;
  my $taskId = delete $args{taskId};

lib/Activiti/Rest/Client.pm  view on Meta::CPAN

  );
  Activiti::Rest::Response->from_http_response($res);
}
=head2 task_variable

  Get one variable for a task

  Parameters:

    taskId
    scope (global|local)

  equal to rest call:

    GET runtime/tasks/:taskId/variables/:variableName?scope=:scope

=cut

sub task_variable {
  my($self,%args)=@_;
  my $taskId = delete $args{taskId};



( run in 0.523 second using v1.01-cache-2.11-cpan-49f99fa48dc )