root/branches/release-39/extlib/Net/OAuth/UserAuthRequest.pm @ 2528

Revision 2528, 1.3 kB (checked in by fumiakiy, 18 months ago)

Updated Net::OAuth modules to the latest version. BugId:80041

Line 
1package Net::OAuth::UserAuthRequest;
2use warnings;
3use strict;
4use 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
45Net::OAuth::UserAuthRequest - request for OAuth User Authentication
46
47=head1 SEE ALSO
48
49L<http://oauth.net>
50
51=head1 AUTHOR
52
53Keith Grennan, C<< <kgrennan at cpan.org> >>
54
55=head1 COPYRIGHT & LICENSE
56
57Copyright 2007 Keith Grennan, all rights reserved.
58
59This program is free software; you can redistribute it and/or modify it
60under the same terms as Perl itself.
61
62=cut
63
641;
Note: See TracBrowser for help on using the browser.