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
ae129af2
Commit
ae129af2
authored
1 year ago
by
Mahesh Maney R
Browse files
Options
Download
Patches
Plain Diff
adding url to properties and changing the condition of payment success <ManeyMR>.
parent
2e27cee5
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
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/com/tarento/upsmf/userManagement/services/impl/PaymentServiceImpl.java
+2
-2
...psmf/userManagement/services/impl/PaymentServiceImpl.java
src/main/resources/application.properties
+1
-1
src/main/resources/application.properties
with
3 additions
and
3 deletions
+3
-3
src/main/java/com/tarento/upsmf/userManagement/services/impl/PaymentServiceImpl.java
+
2
−
2
View file @
ae129af2
...
...
@@ -59,8 +59,8 @@ public class PaymentServiceImpl implements PaymentService {
logger
.
info
(
"payment details...{} "
,
requestData
);
org
.
springframework
.
http
.
HttpHeaders
httpHeaders
=
new
org
.
springframework
.
http
.
HttpHeaders
();
String
responseString
=
""
;
if
(
(
requestData
!=
null
)
&&
(
requestData
.
get
(
"Response
_
Code"
)!=
null
)
&&
requestData
.
get
(
"Response
_
Code"
).
equals
(
"E000"
))
{
if
(
(
requestData
!=
null
)
&&
(
requestData
.
get
(
"Response
Code"
)!=
null
)
&&
requestData
.
get
(
"Response
Code"
).
equals
(
"E000"
))
{
responseString
=
PAYMENT_GATEWAY_ENDPOINT
+
"?resp=success"
;
logger
.
info
(
"Payment is successful."
);
}
else
{
...
...
This diff is collapsed.
Click to expand it.
src/main/resources/application.properties
+
1
−
1
View file @
ae129af2
...
...
@@ -18,7 +18,7 @@ sunbirdRC.keycloak.adminToken.userName =admin
sunbirdRC.keycloak.adminToken.clientID
=
admin-api
sunbirdRC.keycloak.adminToken.clientSecret
=
QF5op6Hb3Y9mY1rU0IycdjmD7j3Bvzkh
sunbirdRC.keycloak.adminToken.password
=
admin
paymentGatewayEndPoint
=
https://applicant.upsmfac.org
paymentGatewayEndPoint
=
https://applicant.upsmfac.org
/payment-response
spring.datasource.url
=
jdbc:postgresql://localhost:5432/frac_tool
spring.datasource.username
=
postgres
...
...
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