line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Business::CyberSource::Message; |
2
|
11
|
|
|
11
|
|
7114
|
use strict; |
|
11
|
|
|
|
|
30
|
|
|
11
|
|
|
|
|
363
|
|
3
|
11
|
|
|
11
|
|
45
|
use warnings; |
|
11
|
|
|
|
|
16
|
|
|
11
|
|
|
|
|
308
|
|
4
|
11
|
|
|
11
|
|
46
|
use namespace::autoclean; |
|
11
|
|
|
|
|
14
|
|
|
11
|
|
|
|
|
73
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '0.010008'; # VERSION |
7
|
|
|
|
|
|
|
|
8
|
11
|
|
|
11
|
|
909
|
use Moose; |
|
11
|
|
|
|
|
18
|
|
|
11
|
|
|
|
|
62
|
|
9
|
|
|
|
|
|
|
extends 'Business::CyberSource::MessagePart'; |
10
|
|
|
|
|
|
|
with qw( |
11
|
|
|
|
|
|
|
Business::CyberSource::Role::Traceable |
12
|
|
|
|
|
|
|
Business::CyberSource::Role::MerchantReferenceCode |
13
|
|
|
|
|
|
|
); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
# ABSTRACT: Abstract Message Class; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=pod |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=encoding UTF-8 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 NAME |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Business::CyberSource::Message - Abstract Message Class; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 VERSION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
version 0.010008 |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 EXTENDS |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
L<Business::CyberSource::MessagePart> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 WITH |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=over |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=item L<Business::CyberSource::Role::MerchantReferenceCode> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=back |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 BUGS |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Please report any bugs or feature requests on the bugtracker website |
49
|
|
|
|
|
|
|
https://github.com/hostgator/business-cybersource/issues |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
When submitting a bug or request, please include a test-file or a |
52
|
|
|
|
|
|
|
patch to an existing test-file that illustrates the bug or desired |
53
|
|
|
|
|
|
|
feature. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 AUTHOR |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
Caleb Cushing <xenoterracide@gmail.com> |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
This software is Copyright (c) 2017 by Caleb Cushing <xenoterracide@gmail.com>. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
This is free software, licensed under: |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=cut |