logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SRU::Response::Record - A class for representing a result record in a searchRetrieve response.

Description

       SRU::Response::Record is used to bundle up the information about a particular metadata record in a
       SRU::Response::SearchRetrieve object. Typically you'll construct a record object and add it to the
       SearchRetrieve response.

Methods

new()
       You must supply the recordSchema and recordData parameters. recordPacking, recordPosition, and
       extraRecordData may also be supplied.

           my $record = SRU::Response::Record->new(
               recordSchema        => 'info:srw/schema/1/dc-v1.1',
               recordData          => '<title>Huckleberry Finn</title>'
           );

   recordSchema()
       The URI identifier of the XML schema in which the record is encoded. Although the request may use the
       server's assigned short name, the response must always be the full URI.

   recordData()
       The record itself, either as a string or embedded XML. If would like to pass an object in here you may do
       so as long as it imlements the asXML() method.

   recordPacking()
       The packing used in recordData, as requested by the client or the default: "XML".

   recordPosition()
       The position of the record within the result set. If you don't pass this in recordPosition will be
       automaticlly calculated for you when add or retrieve a record from a SRU::Response::SearchRetrieve
       object.

   extraRecordData()
       Any extra data associated with the record.  See the section on extensions for more information.

   asXML()

Name

       SRU::Response::Record - A class for representing a result record in a searchRetrieve response.

Synopsis

           my $record = SRU::Response::Record->new();
           $record->recordData( '<title>Huck Finn</title>' );
           $response->addRecord( $record );

See Also