Net::OAI::Identify - Results of the Identify OAI-PMH verb.


OAI-Harvester documentation  | view source Contained in the OAI-Harvester distribution.

Index


NAME

Top

Net::OAI::Identify - Results of the Identify OAI-PMH verb.

SYNOPSIS

Top

DESCRIPTION

Top

METHODS

Top

new()

repositoryName()

Top

Returns the name of the repostiory.

baseURL()

Top

Returns the base URL used by the repository.

protocolVersion()

Top

Returns the version of the OAI-PMH used by the repository.

earliestDatestamp()

Top

Returns the earlies datestamp for records available in the repository.

deletedRecord()

Top

Indicates the way the repository works with deleted records. Should return no, transient or persistent.

granularity()

Top

Returns the granularity used by the repository.

adminEmail()

Top

Returns the administrative email address for the repository. Since the adminEmail elelemnt is allowed to repeat you will get all the emails (if more than one are specified) by using adminEmail in a list context.

    $email = $identity->adminEmail();
    @emails = $identity->adminEmails();

compression() {

Top

Returns the types of compression that the archive supports. Since the compression element may repeat you may get all the values by using compression() in a list context.

    $compression = $identity->compression();
    @compressions = $identity->compressions();


OAI-Harvester documentation  | view source Contained in the OAI-Harvester distribution.