line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WWW::Google::APIDiscovery::API::MetaData; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
$WWW::Google::APIDiscovery::API::MetaData::VERSION = '0.28'; |
4
|
|
|
|
|
|
|
$WWW::Google::APIDiscovery::API::MetaData::AUTHORITY = 'cpan:MANWAR'; |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
WWW::Google::APIDiscovery::API::MetaData - Placeholder for supported APIS Meta Data. |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 VERSION |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Version 0.28 |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=cut |
15
|
|
|
|
|
|
|
|
16
|
5
|
|
|
5
|
|
87
|
use 5.006; |
|
5
|
|
|
|
|
21
|
|
17
|
5
|
|
|
5
|
|
29
|
use Moo; |
|
5
|
|
|
|
|
14
|
|
|
5
|
|
|
|
|
32
|
|
18
|
5
|
|
|
5
|
|
1597
|
use namespace::autoclean; |
|
5
|
|
|
|
|
13
|
|
|
5
|
|
|
|
|
31
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
has [ qw(id name title description revision etag kind discoveryVersion |
21
|
|
|
|
|
|
|
icons ownerDomain ownerName documentationLInk protocol baseUrl |
22
|
|
|
|
|
|
|
basePath rootUrl servicePath batchPath parameters auth schemas |
23
|
|
|
|
|
|
|
resources) ] => (is => 'ro'); |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 METHODS |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 id() |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 name() |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 title() |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 description() |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 revision() |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 etag() |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 kind() |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 discoveryVersion() |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 icons() |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 ownerDomain() |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 ownerName() |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 documentationLink() |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 protocol() |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 baseUrl() |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 basePath() |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 rootUrl() |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head2 servicePath() |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 parameters() |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 auth() |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head2 schemas() |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 resources() |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head1 AUTHOR |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
Mohammad S Anwar, C<< >> |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head1 REPOSITORY |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
L |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head1 CONTRIBUTORS |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
Gabor Szabo (szabgab) |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=head1 BUGS |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
Please report any bugs or feature requests to C
|
84
|
|
|
|
|
|
|
rt.cpan.org>, or through the web interface at L. |
85
|
|
|
|
|
|
|
I will be notified, and then you'll automatically be notified of progress on your |
86
|
|
|
|
|
|
|
bug as I make changes. |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
=head1 SUPPORT |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
perldoc WWW::Google::APIDiscovery::API::MetaData |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
You can also look for information at: |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=over 4 |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker (report bugs here) |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
L |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
L |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=item * CPAN Ratings |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
L |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=item * Search CPAN |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
L |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
=back |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
Copyright (C) 2011 - 2015 Mohammad S Anwar. |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under |
121
|
|
|
|
|
|
|
the terms of the the Artistic License (2.0). You may obtain a copy of the full |
122
|
|
|
|
|
|
|
license at: |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
L |
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
Any use, modification, and distribution of the Standard or Modified Versions is |
127
|
|
|
|
|
|
|
governed by this Artistic License.By using, modifying or distributing the Package, |
128
|
|
|
|
|
|
|
you accept this license. Do not use, modify, or distribute the Package, if you do |
129
|
|
|
|
|
|
|
not accept this license. |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
If your Modified Version has been derived from a Modified Version made by someone |
132
|
|
|
|
|
|
|
other than you,you are nevertheless required to ensure that your Modified Version |
133
|
|
|
|
|
|
|
complies with the requirements of this license. |
134
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
This license does not grant you the right to use any trademark, service mark, |
136
|
|
|
|
|
|
|
tradename, or logo of the Copyright Holder. |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
This license includes the non-exclusive, worldwide, free-of-charge patent license |
139
|
|
|
|
|
|
|
to make, have made, use, offer to sell, sell, import and otherwise transfer the |
140
|
|
|
|
|
|
|
Package with respect to any patent claims licensable by the Copyright Holder that |
141
|
|
|
|
|
|
|
are necessarily infringed by the Package. If you institute patent litigation |
142
|
|
|
|
|
|
|
(including a cross-claim or counterclaim) against any party alleging that the |
143
|
|
|
|
|
|
|
Package constitutes direct or contributory patent infringement,then this Artistic |
144
|
|
|
|
|
|
|
License to you shall terminate on the date that such litigation is filed. |
145
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND |
147
|
|
|
|
|
|
|
CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED |
148
|
|
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR |
149
|
|
|
|
|
|
|
NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS |
150
|
|
|
|
|
|
|
REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, |
151
|
|
|
|
|
|
|
INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE |
152
|
|
|
|
|
|
|
OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
=cut |
155
|
|
|
|
|
|
|
|
156
|
|
|
|
|
|
|
1; # End of WWW::Google::APIDiscovery::API::MetaData |