From 341fbe9ad2a856d3c47f827bbd9ef3cdaca91961 Mon Sep 17 00:00:00 2001 From: irotech Date: Mon, 31 Jul 2023 18:58:06 +0100 Subject: [PATCH] fixup! SDK-2262: Add Digital Identity Session Receipt retrieval service --- .../com/yoti/api/client/DigitalIdentityClient.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/yoti-sdk-api/src/main/java/com/yoti/api/client/DigitalIdentityClient.java b/yoti-sdk-api/src/main/java/com/yoti/api/client/DigitalIdentityClient.java index 1fddbf82..2b3faa46 100644 --- a/yoti-sdk-api/src/main/java/com/yoti/api/client/DigitalIdentityClient.java +++ b/yoti-sdk-api/src/main/java/com/yoti/api/client/DigitalIdentityClient.java @@ -37,9 +37,7 @@ public class DigitalIdentityClient { /** * Create a sharing session to initiate a sharing process based on a policy. * - * @param request Details of the request like policy, extensions and push notification for the application * @return ID, status and expiry of the newly created share session - * @throws DigitalIdentityException Thrown if the session creation is unsuccessful */ public ShareSession createShareSession(ShareSessionRequest request) throws DigitalIdentityException { return identityService.createShareSession(sdkId, keyPair, request); @@ -48,9 +46,7 @@ public ShareSession createShareSession(ShareSessionRequest request) throws Digit /** * Retrieve the sharing session. * - * @param sessionId ID of the session to retrieve * @return ID, status and expiry of the share session - * @throws DigitalIdentityException Thrown if the session retrieval is unsuccessful */ public ShareSession fetchShareSession(String sessionId) throws DigitalIdentityException { return identityService.fetchShareSession(sdkId, keyPair, sessionId); @@ -59,9 +55,7 @@ public ShareSession fetchShareSession(String sessionId) throws DigitalIdentityEx /** * Create a sharing session QR code to initiate a sharing process based on a policy. * - * @param sessionId Session ID the QR code will belong to * @return ID and URI of the newly created share session QR code - * @throws DigitalIdentityException Thrown if the QR code creation is unsuccessful */ public ShareSessionQrCode createShareQrCode(String sessionId) throws DigitalIdentityException { return identityService.createShareQrCode(sdkId, keyPair, sessionId); @@ -70,9 +64,7 @@ public ShareSessionQrCode createShareQrCode(String sessionId) throws DigitalIden /** * Retrieve the sharing session QR code. * - * @param qrCodeId ID of the QR code to retrieve * @return The content of the share session QR code - * @throws DigitalIdentityException Thrown if the QR code retrieval is unsuccessful */ public ShareSessionQrCode fetchShareQrCode(String qrCodeId) throws DigitalIdentityException { return identityService.fetchShareQrCode(sdkId, keyPair, qrCodeId); @@ -83,9 +75,7 @@ public ShareSessionQrCode fetchShareQrCode(String qrCodeId) throws DigitalIdenti * *

A receipt will contain the shared user attributes.

* - * @param receiptId ID of the receipt * @return Shared user attributes - * @throws DigitalIdentityException Thrown if the receipt retrieval is unsuccessful */ public Receipt fetchShareReceipt(String receiptId) throws DigitalIdentityException { return identityService.fetchShareReceipt(sdkId, keyPair, receiptId);