| WebService-Recruit-Shingaku documentation | Contained in the WebService-Recruit-Shingaku distribution. |
WebService::Recruit::Shingaku::Base - Base class for Recruit Shingaku net Web Service
This is a base class for Recruit Shingaku net Web Service. WebService::Recruit::Shingaku uses this internally.
Copyright 2008 RECRUIT Media Technology Labs
| WebService-Recruit-Shingaku documentation | Contained in the WebService-Recruit-Shingaku distribution. |
package WebService::Recruit::Shingaku::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;