Skip to content

Commit 43c7537

Browse files
author
Sunny Raj Rathod
committed
Merge pull request #86 from AuthorizeNet/future
Future to master
2 parents 134fca7 + 4b82b4e commit 43c7537

File tree

201 files changed

+666
-232
lines changed

Some content is hidden

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

201 files changed

+666
-232
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ before_script:
1515

1616
script:
1717
- cd sample-code-java
18-
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
19-
- mvn test -B
18+
- mvn install -DsdkVersion=1.8.8-SNAPSHOT -DskipTests=true -Dmaven.javadoc.skip=true -B -V
19+
- mvn test -DsdkVersion=1.8.8-SNAPSHOT -B
2020

2121
after_script:
2222
print_surefire_reports.sh

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
Authorize.Net Java SDK
22
======================
3-
[![Build Status](https://travis-ci.org/AuthorizeNet/sdk-java.png?branch=master)]
3+
[![Travis](https://img.shields.io/travis/AuthorizeNet/sdk-java/master.svg)]
44
(https://travis-ci.org/AuthorizeNet/sdk-java)
5+
[![Code Climate](https://codeclimate.com/github/AuthorizeNet/sdk-java/badges/gpa.svg)](https://codeclimate.com/github/AuthorizeNet/sdk-java)
6+
[![Maven Central](https://img.shields.io/maven-central/v/net.authorize/anet-java-sdk.svg?style=flat)](http://mvnrepository.com/artifact/net.authorize/anet-java-sdk)
57

68
```
79
<groupId>net.authorize</groupId>

src/main/java/net/authorize/api/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.4-2
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: 2015.11.18 at 01:35:18 PM IST
5+
// Generated on: 2016.03.03 at 05:32:06 PM IST
66
//
77

88

src/main/java/net/authorize/api/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.4-2
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: 2015.11.18 at 01:35:18 PM IST
5+
// Generated on: 2016.03.03 at 05:32:06 PM IST
66
//
77

88

src/main/java/net/authorize/api/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.4-2
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: 2015.11.18 at 01:35:18 PM IST
5+
// Generated on: 2016.03.03 at 05:32:06 PM IST
66
//
77

88

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

Lines changed: 29 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.4-2
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: 2015.11.18 at 01:35:18 PM IST
5+
// Generated on: 2016.03.03 at 05:32:06 PM IST
66
//
77

88

@@ -25,6 +25,7 @@
2525
* &lt;extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ANetApiResponse">
2626
* &lt;sequence>
2727
* &lt;element name="subscriptionId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}numericString" minOccurs="0"/>
28+
* &lt;element name="profile" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerProfileIdType" minOccurs="0"/>
2829
* &lt;/sequence>
2930
* &lt;/extension>
3031
* &lt;/complexContent>
@@ -35,14 +36,16 @@
3536
*/
3637
@XmlAccessorType(XmlAccessType.FIELD)
3738
@XmlType(name = "", propOrder = {
38-
"subscriptionId"
39+
"subscriptionId",
40+
"profile"
3941
})
4042
@XmlRootElement(name = "ARBCreateSubscriptionResponse")
4143
public class ARBCreateSubscriptionResponse
4244
extends ANetApiResponse
4345
{
4446

4547
protected String subscriptionId;
48+
protected CustomerProfileIdType profile;
4649

4750
/**
4851
* Gets the value of the subscriptionId property.
@@ -68,4 +71,28 @@ public void setSubscriptionId(String value) {
6871
this.subscriptionId = value;
6972
}
7073

74+
/**
75+
* Gets the value of the profile property.
76+
*
77+
* @return
78+
* possible object is
79+
* {@link CustomerProfileIdType }
80+
*
81+
*/
82+
public CustomerProfileIdType getProfile() {
83+
return profile;
84+
}
85+
86+
/**
87+
* Sets the value of the profile property.
88+
*
89+
* @param value
90+
* allowed object is
91+
* {@link CustomerProfileIdType }
92+
*
93+
*/
94+
public void setProfile(CustomerProfileIdType value) {
95+
this.profile = value;
96+
}
97+
7198
}

src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListOrderFieldEnum.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.4-2
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: 2015.11.18 at 01:35:18 PM IST
5+
// Generated on: 2016.03.03 at 05:32:06 PM IST
66
//
77

88

src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListRequest.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.4-2
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: 2015.11.18 at 01:35:18 PM IST
5+
// Generated on: 2016.03.03 at 05:32:06 PM IST
66
//
77

88

src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListResponse.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.4-2
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: 2015.11.18 at 01:35:18 PM IST
5+
// Generated on: 2016.03.03 at 05:32:06 PM IST
66
//
77

88

src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListSearchTypeEnum.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.4-2
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: 2015.11.18 at 01:35:18 PM IST
5+
// Generated on: 2016.03.03 at 05:32:06 PM IST
66
//
77

88

0 commit comments

Comments
 (0)