Skip to content

Commit

Permalink
Merge pull request #12 from ase-101/develop
Browse files Browse the repository at this point in the history
DSD-5553
  • Loading branch information
ckm007 authored Jul 9, 2024
2 parents 5789d7c + ec01132 commit 41e2310
Show file tree
Hide file tree
Showing 66 changed files with 125 additions and 193 deletions.
2 changes: 1 addition & 1 deletion mock-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.esignet.plugin</groupId>
<groupId>io.mosip.esignet</groupId>
<artifactId>mock-plugin</artifactId>
<version>1.3.0-SNAPSHOT</version>
<name>mock-plugin</name>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.dto;
package io.mosip.esignet.plugin.mock.dto;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.dto;
package io.mosip.esignet.plugin.mock.dto;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.dto;
package io.mosip.esignet.plugin.mock.dto;


import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.dto;
package io.mosip.esignet.plugin.mock.dto;


import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.dto;
package io.mosip.esignet.plugin.mock.dto;


import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.dto;
package io.mosip.esignet.plugin.mock.dto;


import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.dto;
package io.mosip.esignet.plugin.mock.dto;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.service;
package io.mosip.esignet.plugin.mock.service;

import com.fasterxml.jackson.databind.ObjectMapper;
import io.mosip.esignet.api.dto.*;
Expand All @@ -12,8 +12,8 @@
import io.mosip.esignet.api.exception.SendOtpException;
import io.mosip.esignet.api.spi.Authenticator;
import io.mosip.esignet.api.util.ErrorConstants;
import io.esignet.plugin.mock.dto.KycExchangeRequestDto;
import io.esignet.plugin.mock.dto.KycExchangeResponseDto;
import io.mosip.esignet.plugin.mock.dto.KycExchangeRequestDto;
import io.mosip.esignet.plugin.mock.dto.KycExchangeResponseDto;
import io.mosip.kernel.core.http.ResponseWrapper;
import io.mosip.kernel.core.util.StringUtils;
import io.mosip.kernel.keymanagerservice.dto.AllCertificatesDataResponseDto;
Expand Down Expand Up @@ -150,11 +150,11 @@ public List<KycSigningCertificateData> getAllKycSigningCertificates() {

@Override
public KycAuthResult doKycAuth(String relyingPartyId, String clientId, boolean claimsMetadataRequired, KycAuthDto kycAuthDto) throws KycAuthException {
return null;
return doKycAuth(relyingPartyId, clientId, kycAuthDto); //TODO
}

@Override
public KycExchangeResult doVerifiedKycExchange(String relyingPartyId, String clientId, VerifiedKycExchangeDto kycExchangeDto) throws KycExchangeException {
return null;
return doKycExchange(relyingPartyId, clientId, kycExchangeDto); //TODO
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.service;
package io.mosip.esignet.plugin.mock.service;

import com.fasterxml.jackson.databind.ObjectMapper;
import io.mosip.esignet.api.dto.*;
import io.mosip.esignet.api.exception.KycAuthException;
import io.mosip.esignet.api.exception.SendOtpException;
import io.mosip.esignet.api.util.ErrorConstants;
import io.esignet.plugin.mock.dto.KycAuthRequestDto;
import io.esignet.plugin.mock.dto.KycAuthResponseDto;
import io.mosip.esignet.plugin.mock.dto.KycAuthRequestDto;
import io.mosip.esignet.plugin.mock.dto.KycAuthResponseDto;
import io.mosip.kernel.core.http.ResponseWrapper;
import io.mosip.kernel.signature.dto.JWTSignatureRequestDto;
import io.mosip.kernel.signature.dto.JWTSignatureResponseDto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.service;
package io.mosip.esignet.plugin.mock.service;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.nimbusds.jose.jwk.RSAKey;
Expand All @@ -16,7 +16,7 @@
import io.mosip.esignet.api.exception.SendOtpException;
import io.mosip.esignet.api.spi.KeyBinder;
import io.mosip.esignet.api.util.ErrorConstants;
import io.esignet.plugin.mock.dto.IdentityData;
import io.mosip.esignet.plugin.mock.dto.IdentityData;
import io.mosip.kernel.core.http.ResponseWrapper;
import io.mosip.kernel.core.util.DateUtils;
import io.mosip.kernel.keymanagerservice.dto.KeyPairGenerateRequestDto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mock.service;
package io.mosip.esignet.plugin.mock.service;

import java.io.IOException;
import java.net.URI;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.signup.plugin.mock.dto;
package io.mosip.signup.plugin.mock.dto;

import io.mosip.signup.api.dto.IDVProcessFeedback;
import io.mosip.signup.api.dto.IDVProcessStepDetail;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.signup.plugin.mock.service;
package io.mosip.signup.plugin.mock.service;

import io.mosip.signup.api.dto.FrameDetail;
import io.mosip.signup.api.dto.IdentityVerificationDto;
Expand All @@ -13,7 +13,7 @@
import io.mosip.signup.api.spi.IdentityVerifierPlugin;
import io.mosip.signup.api.util.ProcessType;
import io.mosip.signup.api.util.VerificationStatus;
import io.signup.plugin.mock.dto.UseCaseScene;
import io.mosip.signup.plugin.mock.dto.UseCaseScene;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.signup.plugin.mock.service;
package io.mosip.signup.plugin.mock.service;

import com.fasterxml.jackson.databind.JsonNode;
import io.mosip.signup.api.dto.ProfileDto;
Expand Down
2 changes: 1 addition & 1 deletion mosip-identity-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.esignet.plugin</groupId>
<groupId>io.mosip.esignet</groupId>
<version>1.3.0-SNAPSHOT</version>
<artifactId>mosip-identity-plugin</artifactId>
<name>mosip-identity-plugin</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import java.time.LocalDateTime;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import java.util.List;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import java.util.List;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.esignet.plugin.mosipid.dto;
package io.mosip.esignet.plugin.mosipid.dto;

import java.util.List;

Expand Down
Loading

0 comments on commit 41e2310

Please sign in to comment.