WebService::Recruit::AkasuguUchiiwai::Base - Base class for AkasuguUchiiwai Web Service


WebService-Recruit-AkasuguUchiiwai documentation Contained in the WebService-Recruit-AkasuguUchiiwai distribution.

Index


Code Index:

NAME

Top

WebService::Recruit::AkasuguUchiiwai::Base - Base class for AkasuguUchiiwai Web Service

DESCRIPTION

Top

This is a base class for AkasuguUchiiwai Web Service. WebService::Recruit::AkasuguUchiiwai uses this internally.

COPYRIGHT

Top


WebService-Recruit-AkasuguUchiiwai documentation Contained in the WebService-Recruit-AkasuguUchiiwai distribution.

package WebService::Recruit::AkasuguUchiiwai::Base;
use strict;
use base qw( XML::OverHTTP );
use vars qw( $VERSION );
$VERSION = '0.10';

use Class::Accessor::Children::Fast;

sub attr_prefix { ''; }

sub is_error {
    my $self = shift;
    my $root = $self->root();
    return $root ? 0 : 1;
}

1;