File Coverage

blib/lib/WebService/Recruit/CarSensor/LargeArea.pm
Criterion Covered Total %
statement 20 25 80.0
branch n/a
condition n/a
subroutine 10 15 66.6
pod 8 10 80.0
total 38 50 76.0


line stmt bran cond sub pod time code
1             package WebService::Recruit::CarSensor::LargeArea;
2              
3 3     3   947 use strict;
  3         6  
  3         116  
4 3     3   16 use base qw( WebService::Recruit::CarSensor::Base );
  3         5  
  3         281  
5 3     3   15 use vars qw( $VERSION );
  3         5  
  3         300  
6 3     3   16 use Class::Accessor::Fast;
  3         5  
  3         18  
7 3     3   80 use Class::Accessor::Children::Fast;
  3         5  
  3         17  
8              
9             $VERSION = '0.0.2';
10              
11 0     0 1 0 sub http_method { 'GET'; }
12              
13 0     0 1 0 sub url { 'http://webservice.recruit.co.jp/carsensor/large_area/v1/'; }
14              
15 1     1 1 34 sub query_class { 'WebService::Recruit::CarSensor::LargeArea::Query'; }
16              
17             sub query_fields { [
18 3     3 0 38 'key', 'code'
19             ]; }
20              
21             sub default_param { {
22 1     1 1 302 'format' => 'xml'
23             }; }
24              
25             sub notnull_param { [
26 0     0 1 0 'key'
27             ]; }
28              
29 0     0 1 0 sub elem_class { 'WebService::Recruit::CarSensor::LargeArea::Element'; }
30              
31 3     3 1 37 sub root_elem { 'results'; }
32              
33             sub elem_fields { {
34 3     3 0 42 'error' => ['message'],
35             'large_area' => ['code', 'name'],
36             'results' => ['api_version', 'results_available', 'results_returned', 'results_start', 'large_area', 'api_version', 'error'],
37              
38             }; }
39              
40             sub force_array { [
41 0     0 1   'large_area'
42             ]; }
43              
44             # __PACKAGE__->mk_query_accessors();
45              
46             @WebService::Recruit::CarSensor::LargeArea::Query::ISA = qw( Class::Accessor::Fast );
47             WebService::Recruit::CarSensor::LargeArea::Query->mk_accessors( @{query_fields()} );
48              
49             # __PACKAGE__->mk_elem_accessors();
50              
51             @WebService::Recruit::CarSensor::LargeArea::Element::ISA = qw( Class::Accessor::Children::Fast );
52             WebService::Recruit::CarSensor::LargeArea::Element->mk_ro_accessors( root_elem() );
53             WebService::Recruit::CarSensor::LargeArea::Element->mk_child_ro_accessors( %{elem_fields()} );
54              
55             =head1 NAME
56              
57             WebService::Recruit::CarSensor::LargeArea - CarSensor.net Web Service "large_area" API
58              
59             =head1 SYNOPSIS
60              
61             use WebService::Recruit::CarSensor;
62            
63             my $service = WebService::Recruit::CarSensor->new();
64            
65             my $param = {
66             'key' => $ENV{'WEBSERVICE_RECRUIT_KEY'},
67             };
68             my $res = $service->large_area( %$param );
69             my $data = $res->root;
70             print "api_version: $data->api_version\n";
71             print "results_available: $data->results_available\n";
72             print "results_returned: $data->results_returned\n";
73             print "results_start: $data->results_start\n";
74             print "large_area: $data->large_area\n";
75             print "...\n";
76              
77             =head1 DESCRIPTION
78              
79             This module is a interface for the C API.
80             It accepts following query parameters to make an request.
81              
82             my $param = {
83             'key' => 'XXXXXXXX',
84             'code' => '3',
85             };
86             my $res = $service->large_area( %$param );
87              
88             C<$service> above is an instance of L.
89              
90             =head1 METHODS
91              
92             =head2 root
93              
94             This returns the root element of the response.
95              
96             my $root = $res->root;
97              
98             You can retrieve each element by the following accessors.
99              
100             $root->api_version
101             $root->results_available
102             $root->results_returned
103             $root->results_start
104             $root->large_area
105             $root->large_area->[0]->code
106             $root->large_area->[0]->name
107              
108              
109             =head2 xml
110              
111             This returns the raw response context itself.
112              
113             print $res->xml, "\n";
114              
115             =head2 code
116              
117             This returns the response status code.
118              
119             my $code = $res->code; # usually "200" when succeeded
120              
121             =head2 is_error
122              
123             This returns true value when the response has an error.
124              
125             die 'error!' if $res->is_error;
126              
127             =head1 SEE ALSO
128              
129             L
130              
131             =head1 AUTHOR
132              
133             RECRUIT Media Technology Labs
134              
135             =head1 COPYRIGHT
136              
137             Copyright 2008 RECRUIT Media Technology Labs
138              
139             =cut
140             1;