Commit 842ddfa5 authored by Mahesh Maney R's avatar Mahesh Maney R
Browse files

resolving compilation issues <ManeyMR>.

Showing with 2 additions and 1 deletion
+2 -1
......@@ -123,8 +123,9 @@ public class UserHandler {
public ResponseEntity<String> paymentRedirect(String feeId, String fullName, String noOfExams, String feeAmount)
throws URISyntaxException, IOException {
Payment payment = Payment.builder().feeId(feeId).fullName(fullName).noOfExams(noOfExams).feeAmount(feeAmount).build();
logger.info("payload from paymentRedirect {}",payment);
logger.info("payload from paymentRedirect {}", payment);
return userService.paymentRedirect(payment);
}
public String usrLogin(JsonNode body) throws IOException {
logger.info("login user with body {}",body);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment