| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Amazon::MWS::Enumeration::FeedProcessingStatus; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
547
|
use strict; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
25
|
|
|
4
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
23
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
4
|
use base qw(Amazon::MWS::Enumeration); |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
75
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
__PACKAGE__->define(qw/ |
|
9
|
|
|
|
|
|
|
_SUBMITTED_ |
|
10
|
|
|
|
|
|
|
_IN_PROGRESS_ |
|
11
|
|
|
|
|
|
|
_CANCELLED_ |
|
12
|
|
|
|
|
|
|
_DONE_ |
|
13
|
|
|
|
|
|
|
/); |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__END__ |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Amazon::MWS::Enumeration::FeedProcessingStatus |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 CONSTANTS |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=over 4 |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=item _SUBMITTED_ |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=item _IN_PROGRESS_ |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=item _CANCELLED_ |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=item _DONE_ |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=back |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
L<Amazon::MWS::Enumeration> |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 AUTHOR |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Paul Driver C<< frodwith@cpan.org >> |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 LICENCE AND COPYRIGHT |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Copyright (c) 2009, Plain Black Corporation L<http://plainblack.com>. |
|
48
|
|
|
|
|
|
|
All rights reserved |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This module is free software; you can redistribute it and/or modify it under |
|
51
|
|
|
|
|
|
|
the same terms as Perl itself. See L<perlartistic>. |