forked from mosip/esignet
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ES-1033] added fields for verified claims
Signed-off-by: Venkata Saidurga Polamraju <saidurgacsea@gmail.com>
- Loading branch information
1 parent
a9919e0
commit 85a2dab
Showing
7 changed files
with
58 additions
and
7 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
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
13 changes: 13 additions & 0 deletions
13
...net-integration-api/src/main/java/io/mosip/esignet/api/dto/Claim/EvidenceCheckDetail.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,13 @@ | ||
package io.mosip.esignet.api.dto.Claim; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class EvidenceCheckDetail { | ||
|
||
private String checkMethod; | ||
private String organisation; | ||
private String txn; | ||
private FilterTime time; | ||
|
||
} |
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
14 changes: 14 additions & 0 deletions
14
esignet-integration-api/src/main/java/io/mosip/esignet/api/dto/Claim/EvidenceRecord.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,14 @@ | ||
package io.mosip.esignet.api.dto.Claim; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class EvidenceRecord { | ||
|
||
private FilterCriteria type; | ||
private String personalNumber; | ||
private FilterTime createdAt; | ||
private FilterTime dateOfExpiry; | ||
private EvidenceIssuer source; | ||
|
||
} |
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
9 changes: 9 additions & 0 deletions
9
esignet-integration-api/src/main/java/io/mosip/esignet/api/dto/Claim/VerificationMethod.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,9 @@ | ||
package io.mosip.esignet.api.dto.Claim; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class VerificationMethod { | ||
private FilterCriteria type; | ||
|
||
} |