line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Connector::Builtin |
2
|
|
|
|
|
|
|
# |
3
|
|
|
|
|
|
|
# Proxy class for builtin connector modules |
4
|
|
|
|
|
|
|
# |
5
|
|
|
|
|
|
|
# Written by Scott Hardin and Martin Bartosch for the OpenXPKI project 2012 |
6
|
|
|
|
|
|
|
# |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
use strict; |
9
|
16
|
|
|
16
|
|
8430
|
use warnings; |
|
16
|
|
|
|
|
39
|
|
|
16
|
|
|
|
|
464
|
|
10
|
16
|
|
|
16
|
|
81
|
use English; |
|
16
|
|
|
|
|
30
|
|
|
16
|
|
|
|
|
380
|
|
11
|
16
|
|
|
16
|
|
78
|
use Moose; |
|
16
|
|
|
|
|
32
|
|
|
16
|
|
|
|
|
144
|
|
12
|
16
|
|
|
16
|
|
5100
|
|
|
16
|
|
|
|
|
29
|
|
|
16
|
|
|
|
|
84
|
|
13
|
|
|
|
|
|
|
extends 'Connector'; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
no Moose; |
16
|
16
|
|
|
16
|
|
89108
|
__PACKAGE__->meta->make_immutable; |
|
16
|
|
|
|
|
37
|
|
|
16
|
|
|
|
|
76
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Connector::Builtin |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 DESCRIPTION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This is the base class for all Connector::Builtin implementations. |