The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::OAI::Base - A base class for all OAI-PMH responses

SYNOPSIS

    if ( $object->resumptionToken() ) { 
        ...
    }

    if ( $object->errorCode() ) { 
        print "verb action resulted in error code:" . $object->errorCode() . 
            " message:" . $object->errorString() . "\n";
    }

    print "xml response can be found here: " . $obj->file() . "\n";
    print "the response xml is " . $obj->xml(); 

DESCRIPTION

Net::OAI::Base is the base class for all the OAI-PMH verb responses. It is used to provide similar methods to all the responses. The following classes inherit from Net::OAI::Base.

  • Net::OAI::GetRecord

  • Net::OAI::Identify

  • Net::OAI::ListIdentifiers

  • Net::OAI::ListMetadataFormats

  • Net::OAI::ListRecords

  • Net::OAI::ListSets

METHODS

errorCode()

Returns an error code associated with the verb result.

errorString()

Returns an error message associated with an error code.

resumptionToken()

Returns a Net::OAI::ResumptionToken object associated with the call. If there was no resumption token returned in the response then you will be returned undef.

xml()

Returns a reference to a scalar that contains the raw content of the response as XML.

file()

Returns the path to a file that contains the complete XML response.

TODO

SEE ALSO

AUTHORS

  • Ed Summers <ehs@pobox.com>