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


NAME

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


SYNOPSIS


DESCRIPTION


METHODS

new()


repositoryName()

Returns the name of the repostiory.


baseURL()

Returns the base URL used by the repository.


protocolVersion()

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


earliestDatestamp()

Returns the earlies datestamp for records available in the repository.


deletedRecord()

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


granularity()

Returns the granularity used by the repository.


adminEmail()

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() {

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();
 Net::OAI::Identify - Results of the Identify OAI-PMH verb.