]> git.evergreen-ils.org Git - working/NCIPServer.git/blob - lib/NCIP/RequestId.pm
Do for renewitem what was done for checkoutitem in previous commit.
[working/NCIPServer.git] / lib / NCIP / RequestId.pm
1 # ---------------------------------------------------------------
2 # Copyright © 2014 Jason J.A. Stephenson <jason@sigio.com>
3 #
4 # This file is part of NCIPServer.
5 #
6 # NCIPServer is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # NCIPServer is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with NCIPServer.  If not, see <http://www.gnu.org/licenses/>.
18 # ---------------------------------------------------------------
19 package NCIP::RequestId;
20
21 use parent qw(Class::Accessor);
22
23 =head1 NAME
24
25 RequestId - RequestId field data as described in Z39.83-1-2012
26
27 =head1 SYNOPSIS
28
29
30
31 =head1 DESCRIPTION
32
33
34 =head1 FIELDS
35
36 =head2 AgencyId
37
38 Optional text string identifier for the agency where the RequestId is valid.
39
40 =head2 RequestIdentifierType
41
42 Optional text string description of the type of the RequestId.
43
44 =head2 RequestIdentifierValue
45
46 Required text string for the RequestId's value. Could be a database ID
47 or something similar.
48
49 =cut
50
51 NCIP::RequestId->mk_accessors(
52     qw(
53           AgencyId
54           RequestIdentifierType
55           RequestIdentifierValue
56       )
57 );
58
59 1;