line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WebService::Recruit::Aikento::Base; |
2
|
3
|
|
|
3
|
|
18
|
use strict; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
99
|
|
3
|
3
|
|
|
3
|
|
17
|
use base qw( XML::OverHTTP ); |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
2721
|
|
4
|
3
|
|
|
3
|
|
120758
|
use vars qw( $VERSION ); |
|
3
|
|
|
|
|
8
|
|
|
3
|
|
|
|
|
130
|
|
5
|
|
|
|
|
|
|
$VERSION = '0.10'; |
6
|
|
|
|
|
|
|
|
7
|
3
|
|
|
3
|
|
3005
|
use Class::Accessor::Children::Fast; |
|
3
|
|
|
|
|
1601
|
|
|
3
|
|
|
|
|
52
|
|
8
|
|
|
|
|
|
|
|
9
|
0
|
|
|
0
|
1
|
|
sub attr_prefix { ''; } |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub is_error { |
12
|
0
|
|
|
0
|
1
|
|
my $self = shift; |
13
|
0
|
|
|
|
|
|
my $root = $self->root(); |
14
|
0
|
0
|
|
|
|
|
return $root ? 0 : 1; |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
WebService::Recruit::Aikento::Base - Base class for Aikento Web Service |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 DESCRIPTION |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This is a base class for Aikento Web Service. |
24
|
|
|
|
|
|
|
L uses this internally. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 COPYRIGHT |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Copyright 2008 RECRUIT Media Technology Labs |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=cut |
31
|
|
|
|
|
|
|
1; |