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 19, 2024
1 parent 782ee10 commit 32f0378
Show file tree
Hide file tree
Showing 5 changed files with 1,223 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 32f0378

Please sign in to comment.