line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HH::Unispool::Config::Entry::Device::7; |
2
|
|
|
|
|
|
|
|
3
|
6
|
|
|
6
|
|
844
|
use 5.006; |
|
6
|
|
|
|
|
22
|
|
|
6
|
|
|
|
|
293
|
|
4
|
6
|
|
|
6
|
|
38
|
use base qw( HH::Unispool::Config::Entry::Device ); |
|
6
|
|
|
|
|
15
|
|
|
6
|
|
|
|
|
664
|
|
5
|
6
|
|
|
6
|
|
36
|
use strict; |
|
6
|
|
|
|
|
14
|
|
|
6
|
|
|
|
|
262
|
|
6
|
6
|
|
|
6
|
|
41
|
use warnings; |
|
6
|
|
|
|
|
15
|
|
|
6
|
|
|
|
|
210
|
|
7
|
6
|
|
|
6
|
|
32
|
use AutoLoader qw(AUTOLOAD); |
|
6
|
|
|
|
|
20
|
|
|
6
|
|
|
|
|
55
|
|
8
|
6
|
|
|
6
|
|
238
|
use Error qw(:try); |
|
6
|
|
|
|
|
12
|
|
|
6
|
|
|
|
|
55
|
|
9
|
6
|
|
|
6
|
|
1124
|
use HH::Unispool::Config::ExecPri; |
|
6
|
|
|
|
|
14
|
|
|
6
|
|
|
|
|
1227
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
# Used by _value_is_allowed |
12
|
|
|
|
|
|
|
our %ALLOW_ISA = ( |
13
|
|
|
|
|
|
|
'execution_priority' => [ 'HH::Unispool::Config::ExecPri' ], |
14
|
|
|
|
|
|
|
); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# Used by _value_is_allowed |
17
|
|
|
|
|
|
|
our %ALLOW_REF = ( |
18
|
|
|
|
|
|
|
); |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
# Used by _value_is_allowed |
21
|
|
|
|
|
|
|
our %ALLOW_RX = ( |
22
|
|
|
|
|
|
|
'destination_device' => [ '^.+$' ], |
23
|
|
|
|
|
|
|
'header_name' => [ '^.*$' ], |
24
|
|
|
|
|
|
|
'trailer_name' => [ '^.*$' ], |
25
|
|
|
|
|
|
|
); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
# Used by _value_is_allowed |
28
|
|
|
|
|
|
|
our %ALLOW_VALUE = ( |
29
|
|
|
|
|
|
|
); |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
# Used by _initialize |
32
|
|
|
|
|
|
|
our %DEFAULT_VALUE = ( |
33
|
|
|
|
|
|
|
'execution_priority' => HH::Unispool::Config::ExecPri->new( { execution_priority => '' } ), |
34
|
|
|
|
|
|
|
'initially_spooled' => 1, |
35
|
|
|
|
|
|
|
'networkwide' => 1, |
36
|
|
|
|
|
|
|
'save_printfile' => 0, |
37
|
|
|
|
|
|
|
); |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
# Package version |
40
|
|
|
|
|
|
|
our ($VERSION) = '$Revision: 0.3 $' =~ /\$Revision:\s+([^\s]+)/; |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
__END__ |