| 1 | package Net::OAuth::UserAuthRequest; |
|---|
| 2 | use warnings; |
|---|
| 3 | use strict; |
|---|
| 4 | use base qw/Net::OAuth::Message/; |
|---|
| 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<http://oauth.net> |
|---|
| 50 | |
|---|
| 51 | =head1 AUTHOR |
|---|
| 52 | |
|---|
| 53 | Keith Grennan, C<< <kgrennan at cpan.org> >> |
|---|
| 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; |
|---|