Add a stub Evergreen driver.
authorJason Stephenson <jason@sigio.com>
Wed, 25 Jun 2014 15:21:48 +0000 (11:21 -0400)
committerJason Stephenson <jason@sigio.com>
Mon, 21 Jul 2014 00:07:37 +0000 (20:07 -0400)
This creates a skeleton lib/NCIP/ILS/Evergreen.pm with just the main
subroutines.  They currently do nothing at all.

Signed-off-by: Jason Stephenson <jason@sigio.com>
lib/NCIP/ILS/Evergreen.pm [new file with mode: 0644]

diff --git a/lib/NCIP/ILS/Evergreen.pm b/lib/NCIP/ILS/Evergreen.pm
new file mode 100644 (file)
index 0000000..4948a20
--- /dev/null
@@ -0,0 +1,36 @@
+# ---------------------------------------------------------------
+# Copyright © 2014 Jason Stephenson <jason@sigio.com>
+#
+# This program 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.
+#
+# This program 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.
+# ---------------------------------------------------------------
+package NCIP::ILS::Evergreen;
+
+use Modern::Perl;
+
+use Object::Tiny qw/name/;
+
+sub itemdata {}
+
+sub userdata {}
+
+sub checkin {}
+
+sub checkout {}
+
+sub renew {}
+
+sub request {}
+
+sub cancelrequest {}
+
+sub acceptitem {}
+
+1;