Skip to content

Commit

Permalink
Add KRA KeyRequestService to v2 APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
fmarco76 committed Aug 12, 2024
1 parent d2fe6a8 commit df22cd9
Show file tree
Hide file tree
Showing 5 changed files with 1,218 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ public RESTMessage(MultivaluedMap<String, String> form) {
}
}

public RESTMessage(Map<String, String[]> parameterMap) {
for(String key: parameterMap.keySet()) {
attributes.put(key, parameterMap.get(key)[0]);
}
}

@JsonProperty("ClassName")
public String getClassName() {
return className;
Expand Down
Loading

0 comments on commit df22cd9

Please sign in to comment.