From d841954833a0fedd62003f45efe4bc700d19abf0 Mon Sep 17 00:00:00 2001 From: William Welling Date: Mon, 19 Dec 2022 12:08:32 -0600 Subject: [PATCH] Add missing setters --- .../edu/tamu/iiif/model/RedisManifest.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/main/java/edu/tamu/iiif/model/RedisManifest.java b/src/main/java/edu/tamu/iiif/model/RedisManifest.java index eb364e6..c64c081 100644 --- a/src/main/java/edu/tamu/iiif/model/RedisManifest.java +++ b/src/main/java/edu/tamu/iiif/model/RedisManifest.java @@ -67,22 +67,42 @@ public String getPath() { return path; } + public void setPath(String path) { + this.path = path; + } + public ManifestType getType() { return type; } + public void setType(ManifestType type) { + this.type = type; + } + public String getRepository() { return repository; } + public void setRepository(String repository) { + this.repository = repository; + } + public String getAllowed() { return allowed; } + public void setAllowed(String allowed) { + this.allowed = allowed; + } + public String getDisallowed() { return disallowed; } + public void setDisallowed(String disallowed) { + this.disallowed = disallowed; + } + public String getJson() { return json; }