|
NAMESRU::Request::Explain - A class for representing SRU explain requests SYNOPSIS ## creating a new request
my $request = SRU::Request::Explain->new();
DESCRIPTIONSRU::Request::Explain is a class for representing SRU 'explain' requests. Explain requests essentially ask the server to describe its services. METHODSnew()The constructor, which you can pass the optional parameters parameters: version, recordPacking, stylesheet, and extraRequestData parameters. my $request = SRU::Request::Explain->new(
version => '1.1',
stylesheet => 'http://www.example.com/styles/mystyle.xslt'
);
Normally you'll probably want to use the factory SRU::Response::newFromURI to create requests, instead of calling new() yourself. version()recordPacking()stylesheet()extraRequestData()validParams()COPYRIGHT AND LICENSEThis software is copyright (c) 2013 by Ed Summers. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|