Skip to content

Commit 92bb7da

Browse files
committed
adding codeDepot markers
1 parent a146551 commit 92bb7da

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Diff for: src/main/java/com/docusign/controller/eSignature/examples/EG006ControllerEnvelopeDocs.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,15 @@ protected void onInitModel(WorkArguments args, ModelMap model) throws Exception
4949
protected Object doWork(WorkArguments args, ModelMap model, HttpServletResponse response) throws ApiException {
5050
EnvelopesApi envelopesApi = createEnvelopesApi(session.getBasePath(), user.getAccessToken());
5151

52-
// Step 1. List the envelope's documents
52+
// List the envelope's documents
53+
//ds-snippet-start:eSign6Step3
5354
EnvelopeDocumentsResult envelopeDocumentsResult = EnvelopeDocsService.envelopeDocs(
5455
envelopesApi,
5556
session.getAccountId(),
5657
session.getEnvelopeId());
57-
58-
// Step 2. Process results
58+
//ds-snippet-end:eSign6Step3
59+
60+
// Process results
5961
// Save the envelopeId and its list of documents in the session so
6062
// they can be used in example 7 (download a document)
6163
List<EnvelopeDocumentInfo> envelopeDocItems = new ArrayList<>();

0 commit comments

Comments
 (0)