Skip to content

Commit c1998ae

Browse files
committed
fixed variable namings
1 parent 866e4e1 commit c1998ae

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ protected void onInitModel(WorkArguments args, ModelMap model) throws Exception
5151
protected Object doWork(WorkArguments args, ModelMap model, HttpServletResponse response)
5252
throws ApiException, IOException {
5353
if (args.getSignerEmail().equals(config.getSignerEmail())) {
54-
throw new ApiException(config.getCodeExamplesText().SupportingTexts.RecipientShouldDifferFromSender);
54+
throw new ApiException(config.getCodeExamplesText().SupportingTexts.IdenticalEmailsNotAllowedErrorMessage);
5555
}
5656

5757
String accountId = session.getAccountId();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public EG022ControllerKBAAuthentication(DSConfiguration config, Session session,
3434
protected Object doWork(WorkArguments args, ModelMap model,
3535
HttpServletResponse response) throws ApiException, IOException {
3636
if (args.getSignerEmail().equals(config.getSignerEmail())) {
37-
throw new ApiException(config.getCodeExamplesText().SupportingTexts.RecipientShouldDifferFromSender);
37+
throw new ApiException(config.getCodeExamplesText().SupportingTexts.IdenticalEmailsNotAllowedErrorMessage);
3838
}
3939

4040
// Step 1: Construct your API headers

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public EG023ControllerIdvAuthentication(DSConfiguration config, Session session,
3636
@Override
3737
protected Object doWork(WorkArguments args, ModelMap model, HttpServletResponse response) throws ApiException, IOException {
3838
if (args.getSignerEmail().equals(config.getSignerEmail())) {
39-
throw new ApiException(config.getCodeExamplesText().SupportingTexts.RecipientShouldDifferFromSender);
39+
throw new ApiException(config.getCodeExamplesText().SupportingTexts.IdenticalEmailsNotAllowedErrorMessage);
4040
}
4141

4242
ApiClient apiClient = createApiClient(session.getBasePath(), user.getAccessToken());

src/main/java/com/docusign/core/model/manifestModels/SupportingTexts.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class SupportingTexts {
3434

3535
public String CFRError;
3636

37-
public String RecipientShouldDifferFromSender;
37+
public String IdenticalEmailsNotAllowedErrorMessage;
3838

3939
public LoginPage LoginPage;
4040

0 commit comments

Comments
 (0)