Skip to content

Commit

Permalink
Add missing setters
Browse files Browse the repository at this point in the history
  • Loading branch information
wwelling committed Dec 19, 2022
1 parent 218fa0f commit d841954
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/main/java/edu/tamu/iiif/model/RedisManifest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit d841954

Please sign in to comment.