Skip to content

Commit 0d02b59

Browse files
author
akankari
committed
Correcting the class name in order to fix build
1 parent 922b87d commit 0d02b59

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/java/net/authorize/sample/PaymentTransactions/CaptureFundsAuthorizedThroughAnotherChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import net.authorize.api.controller.base.ApiOperationBase;
88
import net.authorize.api.controller.CreateTransactionController;
99

10-
public class CaptureOnly {
10+
public class CaptureFundsAuthorizedThroughAnotherChannel {
1111

1212
//
1313
// Run this sample from command line with:

src/main/java/net/authorize/sample/SampleCode.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ private static void ShowMethods()
8181
System.out.println(" RefundTransaction");
8282
System.out.println(" VoidTransaction");
8383
System.out.println(" CreateCustomerProfileFromTransaction");
84-
System.out.println(" CaptureOnly");
84+
System.out.println(" CaptureFundsAuthorizedThroughAnotherChannel");
8585
System.out.println(" CapturePreviouslyAuthorizedAmount");
8686
System.out.println(" DebitBankAccount");
8787
System.out.println(" CreditBankAccount");
@@ -158,8 +158,8 @@ private static void RunMethod(String methodName)
158158
case "CreateCustomerProfileFromTransaction":
159159
CreateCustomerProfileFromTransaction.run(apiLoginId, transactionKey);
160160
break;
161-
case "CaptureOnly":
162-
CaptureOnly.run(apiLoginId, transactionKey);
161+
case "CaptureFundsAuthorizedThroughAnotherChannel":
162+
CaptureFundsAuthorizedThroughAnotherChannel.run(apiLoginId, transactionKey);
163163
break;
164164
case "CapturePreviouslyAuthorizedAmount":
165165
CapturePreviouslyAuthorizedAmount.run(apiLoginId, transactionKey);

0 commit comments

Comments
 (0)