Skip to content

Commit

Permalink
fix: access modifiers for config classes
Browse files Browse the repository at this point in the history
  • Loading branch information
manikmagar committed Sep 26, 2024
1 parent e61a12a commit 5a03d09
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,18 @@ public String getDetail() {
return detail;
}

public ExceptionProperties setStatusCode(String statusCode) {
this.statusCode = statusCode;
return this;
}

public ExceptionProperties setType(String type) {
this.type = type;
return this;
}

public ExceptionProperties setDetail(String detail) {
this.detail = detail;
return this;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ public KeyValuePair(String key, String value) {
this.value = value;
}

public KeyValuePair setKey(String key) {
this.key = key;
return this;
}

public KeyValuePair setValue(String value) {
this.value = value;
return this;
}

public String getKey() {
return key;
}
Expand Down

0 comments on commit 5a03d09

Please sign in to comment.