-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sonali Shakya
authored and
Sonali Shakya
committed
Dec 23, 2024
1 parent
7a50225
commit b007498
Showing
7 changed files
with
58 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...yte-integration/src/main/java/com/ondc/yugabyte_integration/Entity/PayloadDetailsDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package com.ondc.yugabyte_integration.Entity; | ||
|
||
import java.util.List; | ||
|
||
public class PayloadDetailsDTO { | ||
private SessionDetails.Type npType; | ||
private String domain; | ||
private Payload payloads; | ||
|
||
public PayloadDetailsDTO(SessionDetails.Type npType, String domain, Payload payloads) { | ||
this.npType = npType; | ||
this.domain = domain; | ||
this.payloads = payloads; | ||
} | ||
|
||
public SessionDetails.Type getNpType() { | ||
return npType; | ||
} | ||
|
||
public void setNpType(SessionDetails.Type npType) { | ||
this.npType = npType; | ||
} | ||
|
||
public String getDomain() { | ||
return domain; | ||
} | ||
|
||
public void setDomain(String domain) { | ||
this.domain = domain; | ||
} | ||
|
||
public Payload getPayloads() { | ||
return payloads; | ||
} | ||
|
||
public void setPayloads(Payload payloads) { | ||
this.payloads = payloads; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-237 Bytes
(97%)
...on/target/classes/com/ondc/yugabyte_integration/Controller/SessionDetailsController.class
Binary file not shown.
Binary file added
BIN
+1.7 KB
...e-integration/target/classes/com/ondc/yugabyte_integration/Entity/PayloadDetailsDTO.class
Binary file not shown.
Binary file modified
BIN
+1.28 KB
(130%)
...egration/target/classes/com/ondc/yugabyte_integration/Service/SessionDetailsService.class
Binary file not shown.