Skip to content

Commit a4dcdc1

Browse files
committed
DEVDOCS-10280 adding codeDepot markers
1 parent 5846bdc commit a4dcdc1

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/main/java/com/docusign/controller/eSignature/examples/EG039ControllerInPersonSigning.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ protected Object doWork(WorkArguments args, ModelMap model,
5858
EnvelopeDefinition envelope = InPersonSigningService.makeEnvelope(hostEmail, hostName, signerName,
5959
ANCHOR_OFFSET_Y, ANCHOR_OFFSET_X, DOCUMENT_FILE_NAME, DOCUMENT_NAME);
6060

61-
// Step 3 start
61+
//ds-snippet-start:eSign39Step3
6262
ApiClient apiClient = createApiClient(basePath, accessToken);
6363
EnvelopesApi envelopesApi = new EnvelopesApi(apiClient);
6464

6565
EnvelopeSummary envelopeSummary = envelopesApi.createEnvelope(accountId, envelope);
66-
// Step 3 end
67-
// Step 5 start
66+
//ds-snippet-end:eSign39Step3
67+
//ds-snippet-start:eSign39Step5
6868
RecipientViewRequest viewRequest = InPersonSigningService.makeRecipientViewRequest(hostEmail, hostName, config);
69-
// Step 5 end
69+
//ds-snippet-end:eSign39Step5
7070

7171
ViewUrl viewUrl = InPersonSigningService.inPersonSigning(
7272
envelopesApi,

src/main/java/com/docusign/controller/eSignature/services/InPersonSigningService.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static ViewUrl inPersonSigning(
1919
return envelopesApi.createRecipientView(accountId, envelopeId, viewRequest);
2020
}
2121

22-
// Step 4 start
22+
//ds-snippet-start:eSign39Step4
2323
public static RecipientViewRequest makeRecipientViewRequest(
2424
String hostEmail,
2525
String hostName,
@@ -40,9 +40,9 @@ public static RecipientViewRequest makeRecipientViewRequest(
4040

4141
return viewRequest;
4242
}
43-
// Step 4 end
43+
//ds-snippet-end:eSign39Step4
4444

45-
// Step 2 start
45+
//ds-snippet-start:eSign39Step2
4646
public static EnvelopeDefinition makeEnvelope(
4747
String hostEmail,
4848
String hostName,
@@ -74,5 +74,5 @@ public static EnvelopeDefinition makeEnvelope(
7474

7575
return envelopeDefinition;
7676
}
77-
// Step 2 end
77+
//ds-snippet-end:eSign39Step2
7878
}

0 commit comments

Comments
 (0)