Skip to content

Commit 5958f5a

Browse files
branding updates
1 parent 3e0530a commit 5958f5a

File tree

18 files changed

+63
-66
lines changed

18 files changed

+63
-66
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2018 DocuSign, Inc. (https://www.docusign.com)
3+
Copyright (c) 2024 Docusign, Inc. (https://www.docusign.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

PAYMENTS_INSTALLATION.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Configure a payment gateway
22

3-
DocuSign offers built-in connections to multiple payment gateways. The payments code example uses a developer account via the Stripe gateway service.
3+
Docusign offers built-in connections to multiple payment gateways. The payments code example uses a developer account via the Stripe gateway service.
44

55

66
## Create a Stripe payment gateway
@@ -9,13 +9,13 @@ DocuSign offers built-in connections to multiple payment gateways. The payments
99

1010
1. For development, you can skip the Stripe account application by using the **Skip this account form** link at the top of the page.<br />
1111

12-
![Skipping the Stripe account form](docs/stripe_skip_account_form_link.png)
12+
![Skipping the Stripe account form](docs/stripe_skip_account_form_link.png)
1313

14-
An enabled Stripe payment gateway is now associated with your DocuSign developer account and is shown under **Payment Gateway**.
14+
An enabled Stripe payment gateway is now associated with your Docusign developer account and is shown under **Payment Gateway**.
1515

1616
1. Save the **Gateway Account ID** GUID to the code example launcher configuration file.
1717

1818

1919
## Additional documentation
2020
* [Managing Payment Gateways](https://support.docusign.com/en/guides/managing-payment-gateways)
21-
* [How to send a request for payment](https://developers.docusign.com/docs/esign-rest-api/how-to/request-a-payment)
21+
* [How to send a request for payment](https://developers.docusign.com/docs/esign-rest-api/how-to/request-a-payment)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Introduction
2-
MyMedicalRecords is a sample app showcasing integration between the DocuSign eSignature REST API and an Electronic Medical Records System. Each scenario in the sample app illustrates a different use case, such as creating and sending an envelope through SMS messaging and embedded signing of a templated form and consists of a series of API calls.
1+
# Introduction
2+
MyMedicalRecords is a sample app showcasing integration between the Docusign eSignature REST API and an Electronic Medical Records System. Each scenario in the sample app illustrates a different use case, such as creating and sending an envelope through SMS messaging and embedded signing of a templated form and consists of a series of API calls.
33

44

55
# Hosted instance

docs/Adding_examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ After your new example has been accepted, the DevCenter team will
1515
arrange to have it ported to the other SDK examples.
1616

1717
### New examples should be not too big, and not too small
18-
Each example should cover a DocuSign feature "appropriately."
18+
Each example should cover a Docusign feature "appropriately."
1919

2020
For example, if a feature offers two options then consider
2121
having your example demonstrate both options.

src/main/java/com/docusign/controller/IndexController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public ModelAndView homePageController(ModelMap model) {
2929

3030
@GetMapping(path = "/ds/mustAuthenticate")
3131
public ModelAndView mustAuthenticateController(ModelMap model) {
32-
// model.addAttribute(ATTR_TITLE, "Authenticate with DocuSign");
32+
// model.addAttribute(ATTR_TITLE, "Authenticate with Docusign");
3333
// return new ModelAndView(getLoginPath());
3434
return new ModelAndView("redirect:" + getLoginPath());
3535
}
@@ -53,7 +53,7 @@ public ModelAndView returnFinancialForms(ModelMap model){
5353
public String returnController(@RequestParam(value = ATTR_STATE, required = false) String state,
5454
@RequestParam(value = ATTR_EVENT, required = false) String event,
5555
@RequestParam(value = "envelopeId", required = false) String envelopeId, ModelMap model) {
56-
model.addAttribute(ATTR_TITLE, "Return from DocuSign");
56+
model.addAttribute(ATTR_TITLE, "Return from Docusign");
5757
model.addAttribute(ATTR_EVENT, event);
5858
model.addAttribute(ATTR_STATE, state);
5959
model.addAttribute(ATTR_ENVELOPE_ID, envelopeId);

src/main/java/com/docusign/controller/common/DsModelUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
/**
8-
* Helper functions to create and modify objects provided by the DocuSign API.
8+
* Helper functions to create and modify objects provided by the Docusign API.
99
*/
1010
public final class DsModelUtils {
1111

src/main/java/com/docusign/controller/common/ds/EnvelopeHelpers.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public static Document createDocument(byte[] data, String documentName, String f
152152
/**
153153
* Create SignHere (see {@link SignHere}) field (also known as tabs) on the
154154
* documents using anchor (autoPlace) positioning.
155-
* @param anchorString the anchor string; the DocuSign platform searches
155+
* @param anchorString the anchor string; the Docusign platform searches
156156
* throughout your envelope's documents for matching anchor strings
157157
* @param yOffsetPixels the y offset of anchor in pixels
158158
* @param xOffsetPixels the x offset of anchor in pixels
@@ -205,7 +205,7 @@ public static FullName createFullName(String anchorString, int yOffsetPixels, in
205205
/**
206206
* Create Tabs object containing a single SignHere (see {@link SignHere})
207207
* field (also known as tabs) on the documents using anchor (autoPlace) positioning.
208-
* @param anchorString the anchor string; the DocuSign platform searches
208+
* @param anchorString the anchor string; the Docusign platform searches
209209
* throughout your envelope's documents for matching anchor strings
210210
* @param yOffsetPixels the y offset of anchor in pixels
211211
* @param xOffsetPixels the x offset of anchor in pixels

src/main/java/com/docusign/controller/examples/FinancialForms.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ protected Object doWork(WorkArguments args, ModelMap model,
6464
//Creates the envelope definition
6565
EnvelopeDefinition envelope = makeEnvelope(signerEmail, signerName);
6666

67-
//Call DocuSign to create the envelope
67+
//Call Docusign to create the envelope
6868
ApiClient apiClient = createApiClient(session.getBasePath() + "/restapi", user.getAccessToken());
6969
EnvelopesApi envelopesApi = new EnvelopesApi(apiClient);
7070
EnvelopeSummary envelopeSummary = envelopesApi.createEnvelope(accountId, envelope);
@@ -89,13 +89,13 @@ private RecipientViewRequest makeRecipientViewRequest(String signerEmail, String
8989
// should typically be a callback route somewhere in your app.
9090
// The query parameter is included as an example of how
9191
// to save/recover state information during the redirect to
92-
// the DocuSign signing. It's usually better to use
92+
// the Docusign signing. It's usually better to use
9393
// the session mechanism of your web framework. Query parameters
9494
// can be changed/spoofed very easily.
9595
viewRequest.setReturnUrl(config.getDsReturnUrl() + "?state=123");
9696

9797
// How has your app authenticated the user? In addition to your app's
98-
// authentication, you can include authenticate steps from DocuSign.
98+
// authentication, you can include authenticate steps from Docusign.
9999
// Eg, SMS authentication
100100
viewRequest.setAuthenticationMethod("none");
101101

@@ -105,11 +105,11 @@ private RecipientViewRequest makeRecipientViewRequest(String signerEmail, String
105105
viewRequest.setUserName(signerName);
106106
viewRequest.setClientUserId(SIGNER_CLIENT_ID);
107107

108-
// DocuSign recommends that you redirect to DocuSign for the
108+
// Docusign recommends that you redirect to Docusign for the
109109
// embedded signing. There are multiple ways to save state.
110110
// To maintain your application's session, use the pingUrl
111-
// parameter. It causes the DocuSign signing web page
112-
// (not the DocuSign server) to send pings via AJAX to your app.
111+
// parameter. It causes the Docusign signing web page
112+
// (not the Docusign server) to send pings via AJAX to your app.
113113
// NOTE: The pings will only be sent if the pingUrl is an https address
114114
viewRequest.setPingFrequency("600"); // seconds
115115
viewRequest.setPingUrl(config.getDsPingUrl());
@@ -123,7 +123,7 @@ private static EnvelopeDefinition makeEnvelope(String signerEmail, String signer
123123
DateSigned dates = EnvelopeHelpers.createDateSigned("*ds2*", ANCHOR_OFFSET_Y, ANCHOR_OFFSET_X);
124124
FullName names = EnvelopeHelpers.createFullName("Print Name of Patient", ANCHOR_OFFSET_Y, ANCHOR_OFFSET_X);
125125
Text texts =EnvelopeHelpers.createText("*txt2", ANCHOR_OFFSET_Y, ANCHOR_OFFSET_X);
126-
126+
127127
Tabs signerTabs = new Tabs();
128128
signerTabs.setSignHereTabs(Arrays.asList(signs));
129129
signerTabs.setTextTabs(Arrays.asList(texts));

src/main/resources/Welcome.txt

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22

33

44

5-
Welcome to the DocuSign Recruiting Event
6-
7-
5+
Welcome to the Docusign Recruiting Event
6+
7+
88
Please Sign in!
9-
10-
11-
-2.08 KB
Loading

0 commit comments

Comments
 (0)