File Coverage

blib/lib/Net/OpenSocial/Client/Request/FetchPerson.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition 0 4 0.0
subroutine 4 5 80.0
pod 1 1 100.0
total 17 24 70.8


line stmt bran cond sub pod time code
1             package Net::OpenSocial::Client::Request::FetchPerson;
2              
3 1     1   8 use Any::Moose;
  1         2  
  1         8  
4             extends 'Net::OpenSocial::Client::Request';
5              
6 1     1   508 use Net::OpenSocial::Client::Type::Service qw(PEOPLE);
  1         2  
  1         59  
7 1     1   6 use Net::OpenSocial::Client::Type::Operation qw(GET);
  1         2  
  1         125  
8              
9             sub BUILDARGS {
10 0     0 1   my ( $self, $user_id, $params ) = @_;
11             return {
12 0   0       service => PEOPLE,
      0        
13             operation => GET,
14             user_id => $user_id||'@me',
15             group_id => '@self',
16             params => $params||{},
17             };
18             }
19              
20 1     1   6 no Any::Moose;
  1         2  
  1         5  
21             __PACKAGE__->meta->make_immutable;
22             1;
23              
24             =head1 NAME
25              
26             Net::OpenSocial::Client::Request::FetchPerson - Request to fetch person
27              
28             =head1 SYNOPSIS
29              
30             my $user_id = '@me';
31             my $req = Net::OpenSocial::Client::Request::FetchPerson->new( $user_id );
32             $client->add_request( $req_id => $req );
33              
34             =head1 DESCRIPTION
35              
36             Request to fetch person which has a simple constructor.
37             You only have to do is pass a user-id or selector.
38             This is a subclass of L.
39              
40             =head1 METHODS
41              
42             =head2 BUILDARGS
43              
44             See L, L
45              
46             =head1 SEE ALSO
47              
48             L
49              
50             =head1 AUTHOR
51              
52             Lyo Kato, Elyo.kato@gmail.comE
53              
54             =head1 COPYRIGHT AND LICENSE
55              
56             Copyright (C) 2009 by Lyo Kato
57              
58             This library is free software; you can redistribute it and/or modify
59             it under the same terms as Perl itself, either Perl version 5.8.8 or,
60             at your option, any later version of Perl 5 you may have available.
61              
62             =cut
63