line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::OAuth::Response; |
2
|
4
|
|
|
4
|
|
2484
|
use warnings; |
|
4
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
126
|
|
3
|
4
|
|
|
4
|
|
21
|
use strict; |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
132
|
|
4
|
4
|
|
|
4
|
|
19
|
use base qw/Net::OAuth::Message/; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
1427
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata(required_message_params => [qw/ |
7
|
|
|
|
|
|
|
token |
8
|
|
|
|
|
|
|
/]); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata(optional_message_params => [qw/ |
11
|
|
|
|
|
|
|
/]); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata(required_api_params => [qw/ |
14
|
|
|
|
|
|
|
/]); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata(optional_api_params => [qw/ |
17
|
|
|
|
|
|
|
extra_params |
18
|
|
|
|
|
|
|
protocol_version |
19
|
|
|
|
|
|
|
/]); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata(signature_elements => [qw/ |
22
|
|
|
|
|
|
|
/]); |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata(all_message_params => [ |
25
|
|
|
|
|
|
|
@{__PACKAGE__->required_message_params}, |
26
|
|
|
|
|
|
|
@{__PACKAGE__->optional_message_params}, |
27
|
|
|
|
|
|
|
]); |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata(all_api_params => [ |
30
|
|
|
|
|
|
|
@{__PACKAGE__->required_api_params}, |
31
|
|
|
|
|
|
|
@{__PACKAGE__->optional_api_params}, |
32
|
|
|
|
|
|
|
]); |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata(all_params => [ |
35
|
|
|
|
|
|
|
@{__PACKAGE__->all_api_params}, |
36
|
|
|
|
|
|
|
@{__PACKAGE__->all_message_params}, |
37
|
|
|
|
|
|
|
]); |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
__PACKAGE__->mk_accessors( |
40
|
|
|
|
|
|
|
@{__PACKAGE__->all_params}, |
41
|
|
|
|
|
|
|
); |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 NAME |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Net::OAuth::Response - base class for OAuth responses |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 SEE ALSO |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
L, L |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head1 AUTHOR |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
Keith Grennan, C<< >> |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
Copyright 2007 Keith Grennan, all rights reserved. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
60
|
|
|
|
|
|
|
under the same terms as Perl itself. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=cut |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
1; |