# --------------------------------------------------------------- # Copyright © 2014 Jason J.A. Stephenson # # This file is part of NCIPServer. # # NCIPServer is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # NCIPServer is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with NCIPServer. If not, see . # --------------------------------------------------------------- package NCIP::RequestId; use parent qw(Class::Accessor); =head1 NAME RequestId - RequestId field data as described in Z39.83-1-2012 =head1 SYNOPSIS =head1 DESCRIPTION =head1 FIELDS =head2 AgencyId Optional text string identifier for the agency where the RequestId is valid. =head2 RequestIdentifierType Optional text string description of the type of the RequestId. =head2 RequestIdentifierValue Required text string for the RequestId's value. Could be a database ID or something similar. =cut NCIP::RequestId->mk_accessors( qw( AgencyId RequestIdentifierType RequestIdentifierValue ) ); 1;