]> git.evergreen-ils.org Git - working/NCIPServer.git/blob - lib/NCIP/Item/Id.pm
LP 1673973: Remove the Koha code and make configuration changes.
[working/NCIPServer.git] / lib / NCIP / Item / Id.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::Item::Id;
20
21 use parent qw(Class::Accessor);
22
23 =head1 NAME
24
25 Id - As defined 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 to identify the agency that assigned the
39 identifier to the item.
40
41 =head2 ItemIdentifierType
42
43 Optional text string to indicate the type of identifier value, i.e. a
44 barcode or database ID.
45
46 =head2 ItemIdentifierValue
47
48 Required text string to represent the value of the item identifier.
49
50 =cut
51
52 NCIP::Item::Id->mk_accessors(
53     qw(
54           AgencyId
55           ItemIdentifierType
56           ItemIdentiferValue
57       )
58 );
59
60 1;