Skip to content

Commit

Permalink
add PATCH getter/setter
Browse files Browse the repository at this point in the history
  • Loading branch information
cweedall committed May 1, 2024
1 parent d54e3cd commit 8b0da60
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/edu/isi/oba/config/YamlConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ public void setEnable_get_paths(Boolean enable_get_paths) {
this.configFlags.put(CONFIG_FLAG.PATH_GET, enable_get_paths);
}

public Boolean getEnable_patch_paths() {
return this.configFlags.get(CONFIG_FLAG.PATH_PATCH);
}

public void setEnable_patch_paths(Boolean enable_patch_paths) {
this.configFlags.put(CONFIG_FLAG.PATH_PATCH, enable_patch_paths);
}

public Boolean getEnable_post_paths() {
return this.configFlags.get(CONFIG_FLAG.PATH_POST);
}
Expand Down

0 comments on commit 8b0da60

Please sign in to comment.