From: Jason Stephenson Date: Sat, 19 Jul 2014 14:47:11 +0000 (-0400) Subject: Add NCIP v2.0 to supported versions. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=cf98acaf2e9e0fc47d22b99e3236467de688e414;p=NCIPServer.git Add NCIP v2.0 to supported versions. At some point, we should add code to check the version of NCIP that is in use and alter the response templates accordingly. Signed-off-by: Jason Stephenson --- diff --git a/lib/NCIP/Const.pm b/lib/NCIP/Const.pm index 950eb45..f1c4951 100644 --- a/lib/NCIP/Const.pm +++ b/lib/NCIP/Const.pm @@ -21,7 +21,8 @@ package NCIP::Const; # Versions of NCIP that we support as indicated by a list of schema # URIs. use constant SUPPORTED_VERSIONS => ( - 'http://www.niso.org/schemas/ncip/v2_02/ncip_v2_02.xsd' + 'http://www.niso.org/schemas/ncip/v2_02/ncip_v2_02.xsd', + 'http://www.niso.org/schemas/ncip/v2_0/ncip_v2_0.xsd' );