You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/net/authorize/AuthNetField.java
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,16 @@
2
2
3
3
/**
4
4
* Enumeration to handle all the x_ field names and xml element names
5
+
*
6
+
* @deprecated since version 1.9.8
7
+
* @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
8
+
* @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API.
9
+
* @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
10
+
* @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-php/tree/master/PaymentTransactions.
11
+
* @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
Copy file name to clipboardExpand all lines: src/main/java/net/authorize/Merchant.java
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,15 @@
15
15
* The Merchant is also responsible for creating transactions and
16
16
* posting them to the gateway are performed through the Merchant.
17
17
*
18
+
* @deprecated since version 1.9.8
19
+
* @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
20
+
* @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API.
21
+
* @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
22
+
* @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-php/tree/master/PaymentTransactions.
23
+
* @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
24
+
*
18
25
*/
26
+
@Deprecated
19
27
publicclassMerchantimplementsSerializable {
20
28
21
29
/**
@@ -203,6 +211,7 @@ public void setUserRef(String userRef) {
203
211
*
204
212
* @return A newly created Transaction will be returned.
Copy file name to clipboardExpand all lines: src/main/java/net/authorize/PaymentMethod.java
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,16 @@
3
3
/**
4
4
* The method of payment for the transaction.
5
5
* CC (credit card) or ECHECK (electronic check).
6
+
*
7
+
* @deprecated since version 1.9.8
8
+
* @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
9
+
* @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API.
10
+
* @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
11
+
* @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-php/tree/master/PaymentTransactions.
12
+
* @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
Copy file name to clipboardExpand all lines: src/main/java/net/authorize/ResponseCode.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,15 @@
6
6
* Response code indicates the overall status of the transaction
7
7
* with possible values of approved, declined, error, or held for review.
8
8
*
9
+
* @deprecated since version 1.9.8
10
+
* @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
11
+
* @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API.
12
+
* @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
13
+
* @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-php/tree/master/PaymentTransactions.
14
+
* @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
15
+
*
9
16
*/
17
+
@Deprecated
10
18
publicenumResponseCode {
11
19
APPROVED(1, "This transaction has been approved."),
12
20
DECLINED(2, "This transaction has been declined"),
Copy file name to clipboardExpand all lines: src/main/java/net/authorize/ResponseField.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,16 @@
10
10
*
11
11
* This enum is leveraged across all the integrations of
12
12
* AIM,SIM,DPM,ARB and CIM.
13
+
*
14
+
* @deprecated since version 1.9.8
15
+
* @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
16
+
* @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API.
17
+
* @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
18
+
* @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-php/tree/master/PaymentTransactions.
19
+
* @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
Copy file name to clipboardExpand all lines: src/main/java/net/authorize/ResponseReasonCode.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,15 @@
6
6
/**
7
7
* Response Reason Code is a numeric representation of a more specific reason for the transaction status.
8
8
*
9
+
* @deprecated since version 1.9.8
10
+
* @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
11
+
* @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API.
12
+
* @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
13
+
* @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-php/tree/master/PaymentTransactions.
14
+
* @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
15
+
*
9
16
*/
17
+
@Deprecated
10
18
publicenumResponseReasonCode {
11
19
12
20
RRC_1_1(ResponseCode.APPROVED, 1,"This transaction has been approved.", ""),
Copy file name to clipboardExpand all lines: src/main/java/net/authorize/Result.java
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,16 @@
5
5
importjava.security.MessageDigest;
6
6
importjava.security.NoSuchAlgorithmException;
7
7
8
+
/**
9
+
*
10
+
* @deprecated since version 1.9.8
11
+
* @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
12
+
* @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API.
13
+
* @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
14
+
* @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-php/tree/master/PaymentTransactions.
15
+
* @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
Copy file name to clipboardExpand all lines: src/main/java/net/authorize/Transaction.java
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,16 @@
7
7
8
8
importorg.w3c.dom.Node;
9
9
10
+
/**
11
+
*
12
+
* @deprecated since version 1.9.8
13
+
* @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
14
+
* @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API.
15
+
* @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
16
+
* @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-php/tree/master/PaymentTransactions.
17
+
* @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
Copy file name to clipboardExpand all lines: src/main/java/net/authorize/TransactionType.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,15 @@
3
3
/**
4
4
* The credit card transaction types supported by the payment gateway.
5
5
*
6
+
* @deprecated since version 1.9.8
7
+
* @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
8
+
* @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API.
9
+
* @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
10
+
* @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-php/tree/master/PaymentTransactions.
11
+
* @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
Copy file name to clipboardExpand all lines: src/main/java/net/authorize/aim/Result.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,15 @@
9
9
/**
10
10
* Templated wrapper container for passing back the result from the request gateway.
11
11
*
12
+
* @deprecated since version 1.9.8
13
+
* @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
14
+
* @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API.
15
+
* @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
16
+
* @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-php/tree/master/PaymentTransactions.
17
+
* @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
0 commit comments