File Coverage

lib/BPM/XPDL/Util.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             # Copyrights 2009-2015 by [Mark Overmeer].
2             # For other contributors see ChangeLog.
3             # See the manual pages for details on the licensing terms.
4             # Pod stripped from pm file by OODoc 2.02.
5 1     1   177112 use warnings;
  1         2  
  1         27  
6 1     1   5 use strict;
  1         2  
  1         66  
7              
8             package BPM::XPDL::Util;
9 1     1   16 use vars '$VERSION';
  1         2  
  1         44  
10             $VERSION = '0.93';
11              
12 1     1   5 use base 'Exporter';
  1         1  
  1         138  
13              
14             our @EXPORT = qw/
15             NS_XPDL_009
16             NS_XPDL_10
17             NS_XPDL_20
18             NS_XPDL_21
19             NS_XPDL_22
20             /;
21              
22             our %EXPORT_TAGS =
23             ( xpdl009 => [ qw/NS_XPDL_009/ ]
24             , xpdl10 => [ qw/NS_XPDL_10/ ]
25             , xpdl20 => [ qw/NS_XPDL_20 NS_XPDL_10/ ]
26             , xpdl21 => [ qw/NS_XPDL_21 NS_XPDL_20 NS_XPDL_10/ ]
27             , xpdl22 => [ qw/NS_XPDL_22 NS_XPDL_20 NS_XPDL_10/ ]
28             );
29              
30              
31             use constant
32 1         112 { NS_XPDL_009 => 'http://www.wfmc.org/2002/XPDL1.0'
33             , NS_XPDL_10 => 'http://www.wfmc.org/2002/XPDL1.0'
34             , NS_XPDL_20 => 'http://www.wfmc.org/2004/XPDL2.0alpha'
35             , NS_XPDL_21 => 'http://www.wfmc.org/2008/XPDL2.1'
36             , NS_XPDL_22 => 'http://www.wfmc.org/2009/XPDL2.2'
37 1     1   5 };
  1         1  
38              
39             1;