Skip to content

Commit 2271fb4

Browse files
committed
subscription erport intermediate
1 parent c995c60 commit 2271fb4

File tree

489 files changed

+40349
-699
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

489 files changed

+40349
-699
lines changed

src/main/java/net/authorize/Environment.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ public enum Environment {
3737
SANDBOX_TESTMODE("https://test.authorize.net","https://apitest.authorize.net","https://test.authorize.net"),
3838
PRODUCTION("https://secure.authorize.net","https://api.authorize.net","https://cardpresent.authorize.net"),
3939
PRODUCTION_TESTMODE("https://secure.authorize.net","https://api.authorize.net","https://cardpresent.authorize.net"),
40+
LOCAL_VM("http://WW725RAMITTAL1","http://WW725RAMITTAL1/xml/v1/request.api","http://WW725RAMITTAL1/xml/v1/request.api"),
41+
HOSTED_VM("http://WW758AKALGI02.qa.intra","http://WW758AKALGI02.qa.intra/xml/v1/request.api","http://WW758AKALGI02.qa.intra/xml/v1/request.api"),
4042
CUSTOM(null,null,null);
43+
//http://ww725ramittal1.qa.intra/xml/v1/request.api
4144

4245
private String baseUrl;
4346
private String xmlBaseUrl;

src/main/java/net/authorize/apicore/contract/v1/ANetApiRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2014.05.06 at 01:39:26 PM PDT
5+
// Generated on: 2014.05.21 at 12:05:01 PM PDT
66
//
77

88

@@ -41,7 +41,6 @@
4141
*
4242
*
4343
*/
44-
@SuppressWarnings("serial")
4544
@XmlAccessorType(XmlAccessType.FIELD)
4645
@XmlType(name = "ANetApiRequest", propOrder = {
4746
"merchantAuthentication",
@@ -67,6 +66,7 @@
6766
ARBUpdateSubscriptionRequest.class,
6867
MobileDeviceLoginRequest.class,
6968
GetCustomerPaymentProfileRequest.class,
69+
ARBGetSubscriptionReportRequest.class,
7070
GetSettledBatchListRequest.class,
7171
GetTransactionDetailsRequest.class,
7272
CreateCustomerShippingAddressRequest.class,

src/main/java/net/authorize/apicore/contract/v1/ANetApiResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2014.05.06 at 01:39:26 PM PDT
5+
// Generated on: 2014.05.21 at 12:05:01 PM PDT
66
//
77

88

@@ -38,7 +38,6 @@
3838
*
3939
*
4040
*/
41-
@SuppressWarnings("serial")
4241
@XmlAccessorType(XmlAccessType.FIELD)
4342
@XmlType(name = "ANetApiResponse", propOrder = {
4443
"refId",
@@ -54,6 +53,7 @@
5453
UpdateCustomerShippingAddressResponse.class,
5554
GetCustomerProfileIdsResponse.class,
5655
MobileDeviceLoginResponse.class,
56+
ARBGetSubscriptionReportResponse.class,
5757
DeleteCustomerPaymentProfileResponse.class,
5858
UpdateCustomerPaymentProfileResponse.class,
5959
ARBCancelSubscriptionResponse.class,

src/main/java/net/authorize/apicore/contract/v1/ARBCancelSubscriptionRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2014.05.06 at 01:39:26 PM PDT
5+
// Generated on: 2014.05.21 at 12:05:01 PM PDT
66
//
77

88

src/main/java/net/authorize/apicore/contract/v1/ARBCancelSubscriptionResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2014.05.06 at 01:39:26 PM PDT
5+
// Generated on: 2014.05.21 at 12:05:01 PM PDT
66
//
77

88

src/main/java/net/authorize/apicore/contract/v1/ARBCreateSubscriptionRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2014.05.06 at 01:39:26 PM PDT
5+
// Generated on: 2014.05.21 at 12:05:01 PM PDT
66
//
77

88

src/main/java/net/authorize/apicore/contract/v1/ARBCreateSubscriptionResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2014.05.06 at 01:39:26 PM PDT
5+
// Generated on: 2014.05.21 at 12:05:01 PM PDT
66
//
77

88

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy