Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
userManagement
Commits
5d3e79de
Commit
5d3e79de
authored
1 year ago
by
Mahesh Maney R
Browse files
Options
Download
Patches
Plain Diff
adding loggers to debug <MAneyMR>.
parent
9318efd9
main
UAT_quick_fix_keycloak
UPHRH_8164_ErrorHandling
dev
dev_stable
devops-patch
feature_update_fee
rahu_error_message_fix
uat
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/com/tarento/upsmf/userManagement/utility/KeycloakUserUpdater.java
+8
-2
...nto/upsmf/userManagement/utility/KeycloakUserUpdater.java
with
8 additions
and
2 deletions
+8
-2
src/main/java/com/tarento/upsmf/userManagement/utility/KeycloakUserUpdater.java
+
8
−
2
View file @
5d3e79de
...
...
@@ -59,17 +59,23 @@ public class KeycloakUserUpdater {
StringEntity
entity
=
new
StringEntity
(
requestBody
.
toPrettyString
());
httpPut
.
setEntity
(
entity
);
HttpResponse
response
=
httpClient
.
execute
(
httpPut
);
logger
.
info
(
"Response after execution: {}"
,
response
);
logger
.
info
(
"
********
Response after execution: {}
********
"
,
response
);
String
responseBody
=
""
;
if
(
response
.
getEntity
()
!=
null
)
{
logger
.
info
(
"******** Response Entity: {} ********"
,
response
.
getEntity
());
responseBody
=
EntityUtils
.
toString
(
response
.
getEntity
());
}
logger
.
info
(
"ResponseBody {}"
,
responseBody
);
logger
.
info
(
"response.getStatusLine().getStatusCode() {} "
,
response
.
getStatusLine
().
getStatusCode
());
if
(
response
.
getStatusLine
().
getStatusCode
()
==
204
)
{
if
(
requestBody
.
get
(
"credentials"
)!=
null
){
logger
.
info
(
"credentials is not null"
);
ArrayNode
credentials
=
(
ArrayNode
)
requestBody
.
get
(
"credentials"
);
logger
.
info
(
"credentials[] {}"
,
credentials
);
if
(!
credentials
.
isEmpty
()
&&
!(
credentials
.
get
(
0
).
get
(
"value"
).
asText
().
isBlank
()))
{
keycloakUserCredentialPersister
.
persistUserInfo
(
userName
,
credentials
.
get
(
0
).
get
(
"value"
).
asText
());
logger
.
info
(
"userName : {}, credentials.get(0).get(\"value\").asText() : {}"
,
userName
,
credentials
.
get
(
0
).
get
(
"value"
).
asText
());
String
value
=
keycloakUserCredentialPersister
.
persistUserInfo
(
userName
,
credentials
.
get
(
0
).
get
(
"value"
).
asText
());
logger
.
info
(
"persistUserInfo response {}"
,
value
);
}
}
responseBody
=
" Status 200. User updated successfully."
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets