Skip to content

Commit e99e32f

Browse files
Merge pull request #137 from intuit/v6.0.7
V6.0.7
2 parents baefd5b + f391a5a commit e99e32f

File tree

300 files changed

+2406
-909
lines changed

Some content is hidden

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

300 files changed

+2406
-909
lines changed

ipp-v3-java-data/pom.xml

Lines changed: 105 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.intuit.quickbooks-online</groupId>
66
<artifactId>ipp-v3-java-devkit-pom</artifactId>
7-
<version>6.0.6</version>
7+
<version>6.0.7</version>
88
</parent>
99

1010
<artifactId>ipp-v3-java-data</artifactId>
@@ -72,7 +72,7 @@
7272
</plugin>
7373

7474
<!-- maven shade plugin -->
75-
<plugin>
75+
<!--<plugin>
7676
<groupId>org.apache.maven.plugins</groupId>
7777
<artifactId>maven-shade-plugin</artifactId>
7878
<version>3.2.4</version>
@@ -88,114 +88,117 @@
8888
</configuration>
8989
</execution>
9090
</executions>
91-
</plugin>
91+
</plugin> -->
9292
<!-- end of maven shade plugin -->
9393

94-
<!-- commented to avoid regeneration of entities, as the same is not required everytime -->
94+
<!-- commented to avoid regeneration of entities, as the same is not required everytime -->
9595
<!--
96-
<plugin>
97-
<groupId>org.apache.maven.plugins</groupId>
98-
<artifactId>maven-clean-plugin</artifactId>
99-
<version>2.5</version>
100-
<configuration>
101-
<filesets>
102-
<fileset>
103-
<directory>src/main/java/com/intuit/ipp/data</directory>
104-
</fileset>
105-
</filesets>
106-
</configuration>
107-
</plugin>
108-
<plugin>
109-
<groupId>org.jvnet.jaxb2.maven2</groupId>
110-
<artifactId>maven-jaxb2-plugin</artifactId>
111-
<version>0.14.0</version>
112-
<configuration>
113-
<extension>true</extension>
114-
<cleanPackageDirectories>false</cleanPackageDirectories>
115-
<generateDirectory>src/main/java</generateDirectory>
116-
<bindingDirectory>src/main/xsd/</bindingDirectory>
117-
<forceRegenerate>true</forceRegenerate>
118-
<args>
119-
<arg>-Xcollection-setter-injector</arg>
120-
<arg>-Xequals</arg>
121-
<arg>-XhashCode</arg>
122-
<arg>-Xinheritance</arg>
123-
</args>
124-
<writeCode>true</writeCode>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-clean-plugin</artifactId>
99+
<version>2.5</version>
100+
<configuration>
101+
<filesets>
102+
<fileset>
103+
<directory>src/main/java/com/intuit/ipp/data</directory>
104+
</fileset>
105+
</filesets>
106+
</configuration>
107+
</plugin>
108+
<plugin>
109+
<groupId>org.jvnet.jaxb2.maven2</groupId>
110+
<artifactId>maven-jaxb2-plugin</artifactId>
111+
<version>0.14.0</version>
112+
<configuration>
113+
<extension>true</extension>
114+
<cleanPackageDirectories>false</cleanPackageDirectories>
115+
<generateDirectory>src/main/java</generateDirectory>
116+
<bindingDirectory>src/main/xsd/</bindingDirectory>
117+
<forceRegenerate>true</forceRegenerate>
118+
<args>
119+
<arg>-Xcollection-setter-injector</arg>
120+
<arg>-Xequals</arg>
121+
<arg>-XhashCode</arg>
122+
<arg>-Xinheritance</arg>
123+
</args>
124+
<writeCode>true</writeCode>
125+
<plugins>
126+
<plugin>
127+
<groupId>org.andromda.thirdparty.jaxb2_commons</groupId>
128+
<artifactId>collection-setter-injector</artifactId>
129+
<version>1.0</version>
130+
</plugin>
131+
<plugin>
132+
<groupId>org.jvnet.jaxb2_commons</groupId>
133+
<artifactId>jaxb2-basics</artifactId>
134+
<version>1.11.1</version>
135+
</plugin>
136+
</plugins>
137+
</configuration>
138+
<executions>
139+
<execution>
140+
<id>fmsdata</id>
141+
<goals>
142+
<goal>generate</goal>
143+
</goals>
144+
<configuration>
145+
<generatePackage>com.intuit.ipp.data</generatePackage>
146+
<schemaDirectory>src/main/xsd/</schemaDirectory>
147+
<schemaIncludes>
148+
<include>Finance.xsd</include>
149+
<include>IntuitBaseTypes.xsd</include>
150+
<include>IntuitNamesTypes.xsd</include>
151+
<include>IntuitRestServiceDef.xsd</include>
152+
<include>Report.xsd</include>
153+
<include>SalesTax.xsd</include>
154+
</schemaIncludes>
155+
</configuration>
156+
</execution>
157+
</executions>
158+
</plugin>
159+
-->
160+
<!-- end of regeneration code block -->
161+
162+
</plugins>
163+
</build>
164+
165+
<profiles>
166+
<profile>
167+
<id>sign</id>
168+
<build>
125169
<plugins>
170+
<!-- build javadocs jar -->
126171
<plugin>
127-
<groupId>org.andromda.thirdparty.jaxb2_commons</groupId>
128-
<artifactId>collection-setter-injector</artifactId>
129-
<version>1.0</version>
172+
<groupId>org.apache.maven.plugins</groupId>
173+
<artifactId>maven-javadoc-plugin</artifactId>
174+
<version>2.9</version>
175+
<executions>
176+
<execution>
177+
<id>attach-javadocs</id>
178+
<goals>
179+
<goal>jar</goal>
180+
</goals>
181+
</execution>
182+
</executions>
130183
</plugin>
184+
185+
<!-- build sources jar -->
131186
<plugin>
132-
<groupId>org.jvnet.jaxb2_commons</groupId>
133-
<artifactId>jaxb2-basics</artifactId>
134-
<version>1.11.1</version>
187+
<groupId>org.apache.maven.plugins</groupId>
188+
<artifactId>maven-source-plugin</artifactId>
189+
<version>2.2.1</version>
190+
<executions>
191+
<execution>
192+
<id>attach-sources</id>
193+
<goals>
194+
<goal>jar-no-fork</goal>
195+
</goals>
196+
</execution>
197+
</executions>
135198
</plugin>
136199
</plugins>
137-
</configuration>
138-
<executions>
139-
<execution>
140-
<id>fmsdata</id>
141-
<goals>
142-
<goal>generate</goal>
143-
</goals>
144-
<configuration>
145-
<generatePackage>com.intuit.ipp.data</generatePackage>
146-
<schemaDirectory>src/main/xsd/</schemaDirectory>
147-
<schemaIncludes>
148-
<include>Finance.xsd</include>
149-
<include>IntuitBaseTypes.xsd</include>
150-
<include>IntuitNamesTypes.xsd</include>
151-
<include>IntuitRestServiceDef.xsd</include>
152-
<include>Report.xsd</include>
153-
<include>SalesTax.xsd</include>
154-
</schemaIncludes>
155-
</configuration>
156-
</execution>
157-
</executions>
158-
</plugin> -->
159-
</plugins>
160-
</build>
161-
162-
<profiles>
163-
<profile>
164-
<id>sign</id>
165-
<build>
166-
<plugins>
167-
<!-- build javadocs jar -->
168-
<plugin>
169-
<groupId>org.apache.maven.plugins</groupId>
170-
<artifactId>maven-javadoc-plugin</artifactId>
171-
<version>2.9</version>
172-
<executions>
173-
<execution>
174-
<id>attach-javadocs</id>
175-
<goals>
176-
<goal>jar</goal>
177-
</goals>
178-
</execution>
179-
</executions>
180-
</plugin>
181-
182-
<!-- build sources jar -->
183-
<plugin>
184-
<groupId>org.apache.maven.plugins</groupId>
185-
<artifactId>maven-source-plugin</artifactId>
186-
<version>2.2.1</version>
187-
<executions>
188-
<execution>
189-
<id>attach-sources</id>
190-
<goals>
191-
<goal>jar-no-fork</goal>
192-
</goals>
193-
</execution>
194-
</executions>
195-
</plugin>
196-
</plugins>
197-
</build>
198-
</profile>
199-
</profiles>
200+
</build>
201+
</profile>
202+
</profiles>
200203

201204
</project>

ipp-v3-java-data/src/main/java/META-INF/sun-jaxb.episode

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
77
See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
88
Any modifications to this file will be lost upon recompilation of the source schema.
9-
Generated on: 2020.05.28 at 10:35:45 AM PDT
9+
Generated on: 2020.07.15 at 03:58:30 PM PDT
1010
1111
-->
1212

@@ -36,6 +36,12 @@ Generated on: 2020.05.28 at 10:35:45 AM PDT
3636

3737
</bindings>
3838

39+
<bindings if-exists="true" scd="~tns:RecurringTransaction">
40+
41+
<class ref="com.intuit.ipp.data.RecurringTransaction"/>
42+
43+
</bindings>
44+
3945
<bindings if-exists="true" scd="~tns:Customer">
4046

4147
<class ref="com.intuit.ipp.data.Customer"/>
@@ -954,6 +960,18 @@ Generated on: 2020.05.28 at 10:35:45 AM PDT
954960

955961
</bindings>
956962

963+
<bindings if-exists="true" scd="~tns:RecurringScheduleInfo">
964+
965+
<class ref="com.intuit.ipp.data.RecurringScheduleInfo"/>
966+
967+
</bindings>
968+
969+
<bindings if-exists="true" scd="~tns:RecurringInfo">
970+
971+
<class ref="com.intuit.ipp.data.RecurringInfo"/>
972+
973+
</bindings>
974+
957975
<bindings if-exists="true" scd="~tns:OLBTxnDetail">
958976

959977
<class ref="com.intuit.ipp.data.OLBTxnDetail"/>

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/APCreditCardOperationEnum.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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.05.28 at 10:35:45 AM PDT
5+
// Generated on: 2020.07.15 at 03:58:30 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Account.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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.05.28 at 10:35:45 AM PDT
5+
// Generated on: 2020.07.15 at 03:58:30 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountBasedExpenseLineDetail.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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.05.28 at 10:35:45 AM PDT
5+
// Generated on: 2020.07.15 at 03:58:30 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountClassificationEnum.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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.05.28 at 10:35:45 AM PDT
5+
// Generated on: 2020.07.15 at 03:58:30 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountSubTypeEnum.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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.05.28 at 10:35:45 AM PDT
5+
// Generated on: 2020.07.15 at 03:58:30 PM PDT
66
//
77

88

@@ -3328,7 +3328,7 @@ public enum AccountSubTypeEnum {
33283328
* Product: QBO
33293329
* Description: Use
33303330
* <pre>
3331-
* &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;b xmlns="http://schema.intuit.com/finance/v3" xmlns:p172165_="http://java.sun.com/xml/ns/jaxb" xmlns:p878234_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt;Share Application Money Pending Allotment&lt;/b&gt;
3331+
* &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;b xmlns="http://schema.intuit.com/finance/v3" xmlns:p913189_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:p940414_="http://java.sun.com/xml/ns/jaxb" xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt;Share Application Money Pending Allotment&lt;/b&gt;
33323332
* </pre>
33333333
* to track the application amounts the company receives for shares that still need to be allotted to the investors.
33343334
*

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountTypeEnum.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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.05.28 at 10:35:45 AM PDT
5+
// Generated on: 2020.07.15 at 03:58:30 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AcquiredAsEnum.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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.05.28 at 10:35:45 AM PDT
5+
// Generated on: 2020.07.15 at 03:58:30 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AdvancedInventoryPrefs.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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.05.28 at 10:35:45 AM PDT
5+
// Generated on: 2020.07.15 at 03:58:30 PM PDT
66
//
77

88

0 commit comments

Comments
 (0)