line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::OpenMicroBlogging::PostNoticeRequest; |
2
|
1
|
|
|
1
|
|
7158
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
35
|
|
3
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
42
|
|
4
|
1
|
|
|
1
|
|
6
|
use base qw(Net::OpenMicroBlogging::Message Net::OpenMicroBlogging::ProtectedResourceRequest); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
200
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->init_omb_message; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
__PACKAGE__->add_required_message_params(qw/ |
9
|
|
|
|
|
|
|
omb_version |
10
|
|
|
|
|
|
|
omb_listenee |
11
|
|
|
|
|
|
|
omb_notice |
12
|
|
|
|
|
|
|
omb_notice_content |
13
|
|
|
|
|
|
|
/); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
__PACKAGE__->add_optional_message_params(qw/ |
16
|
|
|
|
|
|
|
omb_notice_url |
17
|
|
|
|
|
|
|
omb_notice_license |
18
|
|
|
|
|
|
|
omb_seealso |
19
|
|
|
|
|
|
|
omb_seealso_disposition |
20
|
|
|
|
|
|
|
omb_seealso_mediatype |
21
|
|
|
|
|
|
|
omb_seealso_license |
22
|
|
|
|
|
|
|
/); |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 NAME |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Net::OpenMicroBlogging::PostNoticeRequest - An OpenMicroBlogging protocol request for posting a notice |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 SEE ALSO |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
L, L |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 AUTHOR |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Keith Grennan, C<< >> |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Copyright 2007 Keith Grennan, all rights reserved. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
41
|
|
|
|
|
|
|
under the same terms as Perl itself. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
1; |