Skip to content

Commit

Permalink
Mosip 27084 1.1.5.5 auth wrapper for esignet 1 (#1026)
Browse files Browse the repository at this point in the history
* Added debugging statements

* Version update

---------

Co-authored-by: Loganathan Sekar <m1047627@mindtree.com>
  • Loading branch information
loganathan-sekaran and Loganathan Sekar authored May 23, 2023
1 parent 71d1e95 commit 1029845
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 13 deletions.
4 changes: 2 additions & 2 deletions authentication/authentication-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<parent>
<groupId>io.mosip.authentication</groupId>
<artifactId>authentication-parent</artifactId>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
</parent>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
<artifactId>authentication-common</artifactId>
<name>authentication-common</name>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,10 @@ public ValidateOtpFunction getValidateOTPFunction() {
public Map<String, Entry<String, List<IdentityInfoDTO>>> getCbeffValues(Map<String, List<IdentityInfoDTO>> idEntity,
CbeffDocType[] types, MatchType matchType) throws IdAuthenticationBusinessException {
Map<String, Entry<String, List<IdentityInfoDTO>>> cbeffValuesForTypes = new HashMap<>();
logger.debug(String.format("Identity: %s", idEntity));
for (CbeffDocType type : types) {
List<String> identityBioAttributes = getBioAttributeNames(type, matchType, idEntity);
logger.debug(String.format("Identity attributes: %s", identityBioAttributes));
for (String bioAttribute : identityBioAttributes) {
Optional<String> identityValue = getIdentityValue(bioAttribute, null, idEntity).findAny();
if (!identityValue.isEmpty()) {
Expand Down
4 changes: 2 additions & 2 deletions authentication/authentication-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<parent>
<groupId>io.mosip.authentication</groupId>
<artifactId>authentication-parent</artifactId>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
</parent>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
<artifactId>authentication-core</artifactId>
<packaging>jar</packaging>

Expand Down
4 changes: 2 additions & 2 deletions authentication/authentication-internal-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<parent>
<groupId>io.mosip.authentication</groupId>
<artifactId>authentication-parent</artifactId>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
</parent>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
<artifactId>authentication-internal-service</artifactId>
<name>authentication-internal-service</name>
<properties>
Expand Down
4 changes: 2 additions & 2 deletions authentication/authentication-kyc-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<parent>
<groupId>io.mosip.authentication</groupId>
<artifactId>authentication-parent</artifactId>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
</parent>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
<artifactId>authentication-kyc-service</artifactId>
<name>authentication-kyc-service</name>
<properties>
Expand Down
4 changes: 2 additions & 2 deletions authentication/authentication-otp-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<parent>
<groupId>io.mosip.authentication</groupId>
<artifactId>authentication-parent</artifactId>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
</parent>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
<artifactId>authentication-otp-service</artifactId>
<name>authentication-otp-service</name>
<properties>
Expand Down
4 changes: 2 additions & 2 deletions authentication/authentication-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<parent>
<groupId>io.mosip.authentication</groupId>
<artifactId>authentication-parent</artifactId>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
</parent>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
<artifactId>authentication-service</artifactId>
<packaging>jar</packaging>

Expand Down
2 changes: 1 addition & 1 deletion authentication/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.mosip.authentication</groupId>
<artifactId>authentication-parent</artifactId>
<version>1.1.5.5-P1-rc3</version>
<version>1.1.5.5-SNAPSHOT</version>
<packaging>pom</packaging>

<name>id-authentication</name>
Expand Down

0 comments on commit 1029845

Please sign in to comment.