File Coverage

blib/lib/Net/OAuth/UserAuthRequest.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Net::OAuth::UserAuthRequest;
2 3     3   1609 use warnings;
  3         5  
  3         94  
3 3     3   14 use strict;
  3         4  
  3         94  
4 3     3   15 use base qw/Net::OAuth::Message/;
  3         5  
  3         1400  
5              
6             __PACKAGE__->mk_classdata(required_message_params => [qw/
7             /]);
8              
9             __PACKAGE__->mk_classdata(optional_message_params => [qw/
10             token
11             callback
12             /]);
13              
14             __PACKAGE__->mk_classdata(required_api_params => [qw/
15             /]);
16              
17             __PACKAGE__->mk_classdata(optional_api_params => [qw/
18             extra_params
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::UserAuthRequest - request for OAuth User Authentication
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;