WFA::Client version 0.01

WFA::Client - A perl WFA client for interacting with OnCommand Workflow Automation.

SYNOPSIS

  my $wfa = WFA::Client->new(
    server   => $hostname_or_ip,
    username => $username,
    password => $password,
  );

  my $workflow = $wfa->get_workflow($workflow_name);

  my $job = $workflow->execute(
    parameter => 'value',
  );

  $job->poll_for_completion();

  my $success = $job->success();

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

Perl 5.8 or later.

COPYRIGHT AND LICENSE

Copyright (C) 2015 by Rentrak Corporation

The full text of this license can be found in the LICENSE file included with this module.