Skip to content

Commit e245f2d

Browse files
author
Bob Hewett
committed
Merge pull request #61 from bhewett/Dev
Checkin for Generated Mozu Code 1.11
2 parents 7eaa6cf + 3205253 commit e245f2d

15 files changed

Lines changed: 220 additions & 221 deletions

File tree

mozu-android-sdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (hasProperty("teamcity")) {
2222
println "TeamCity build number passed into gradle is " + version
2323
} else {
2424
// Manually insert the version numbers here when building outside of TeamCity
25-
version = '1.9.0-SNAPSHOT'
25+
version = '1.11.0-SNAPSHOT'
2626
}
2727

2828
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")

mozu-java-core/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ archivesBaseName='mozu-api-core'
1010
if (hasProperty("teamcity")) {
1111
version = teamcity["build.number"]
1212
println "TeamCity build number passed into gradle is " + version
13-
}
14-
else {
15-
// Manually insert the version numbers here when building outside of TeamCity
16-
version = '1.9.0-SNAPSHOT'
13+
} else {
14+
// Manually insert the version numbers here when building outside of TeamCity
15+
version = '1.11.0-SNAPSHOT'
1716
}
1817

1918
group='com.mozu'

mozu-java-core/src/main/java/com/mozu/api/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010
public class Version
1111
{
12-
public final static String API_VERSION = "1.9.14238.0";
12+
public final static String API_VERSION = "1.11.14239.0";
1313
}

mozu-java-core/src/main/java/com/mozu/api/contracts/commerceruntime/orders/Order.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,19 @@ public class Order implements Serializable
3838
// Default Serial Version UID
3939
private static final long serialVersionUID = 1L;
4040

41+
/**
42+
* If true, the order is exempt from applied sales tax.
43+
*/
44+
protected Boolean isTaxExempt;
45+
46+
public Boolean getIsTaxExempt() {
47+
return this.isTaxExempt;
48+
}
49+
50+
public void setIsTaxExempt(Boolean isTaxExempt) {
51+
this.isTaxExempt = isTaxExempt;
52+
}
53+
4154
protected DateTime acceptedDate;
4255

4356
public DateTime getAcceptedDate() {
@@ -423,19 +436,6 @@ public void setIsImport(Boolean isImport) {
423436
this.isImport = isImport;
424437
}
425438

426-
/**
427-
* If true, the order is exempt from applied sales tax.
428-
*/
429-
protected Boolean isTaxExempt;
430-
431-
public Boolean getIsTaxExempt() {
432-
return this.isTaxExempt;
433-
}
434-
435-
public void setIsTaxExempt(Boolean isTaxExempt) {
436-
this.isTaxExempt = isTaxExempt;
437-
}
438-
439439
/**
440440
* The total amount of tax applied to items in the order.
441441
*/

mozu-java-core/src/main/java/com/mozu/api/contracts/commerceruntime/payments/PaymentGatewayInteraction.java

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,29 @@ public class PaymentGatewayInteraction implements Serializable
1919
// Default Serial Version UID
2020
private static final long serialVersionUID = 1L;
2121

22+
protected String gatewayResponseText;
23+
24+
public String getGatewayResponseText() {
25+
return this.gatewayResponseText;
26+
}
27+
28+
public void setGatewayResponseText(String gatewayResponseText) {
29+
this.gatewayResponseText = gatewayResponseText;
30+
}
31+
32+
/**
33+
* Unique identifier of the gateway transaction associated with the payment interaction.
34+
*/
35+
protected String gatewayTransactionId;
36+
37+
public String getGatewayTransactionId() {
38+
return this.gatewayTransactionId;
39+
}
40+
41+
public void setGatewayTransactionId(String gatewayTransactionId) {
42+
this.gatewayTransactionId = gatewayTransactionId;
43+
}
44+
2245
/**
2346
* If required by the payment gateway, the authorization code of the transaction.
2447
*/
@@ -84,27 +107,4 @@ public void setGatewayResponseCode(String gatewayResponseCode) {
84107
this.gatewayResponseCode = gatewayResponseCode;
85108
}
86109

87-
protected String gatewayResponseText;
88-
89-
public String getGatewayResponseText() {
90-
return this.gatewayResponseText;
91-
}
92-
93-
public void setGatewayResponseText(String gatewayResponseText) {
94-
this.gatewayResponseText = gatewayResponseText;
95-
}
96-
97-
/**
98-
* Unique identifier of the gateway transaction associated with the payment interaction.
99-
*/
100-
protected String gatewayTransactionId;
101-
102-
public String getGatewayTransactionId() {
103-
return this.gatewayTransactionId;
104-
}
105-
106-
public void setGatewayTransactionId(String gatewayTransactionId) {
107-
this.gatewayTransactionId = gatewayTransactionId;
108-
}
109-
110110
}

mozu-java-core/src/main/java/com/mozu/api/contracts/content/View.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,6 @@ public void setUsages(List<String> usages) {
6666
this.usages = usages;
6767
}
6868

69-
protected List<ViewFields> fields;
70-
public List<ViewFields> getFields() {
71-
return this.fields;
72-
}
73-
public void setFields(List<ViewFields> fields) {
74-
this.fields = fields;
75-
}
76-
7769
protected com.fasterxml.jackson.databind.JsonNode metadata;
7870

7971
public com.fasterxml.jackson.databind.JsonNode getMetadata() {
@@ -84,4 +76,12 @@ public void setMetadata(com.fasterxml.jackson.databind.JsonNode metadata) {
8476
this.metadata = metadata;
8577
}
8678

79+
protected List<ViewFields> fields;
80+
public List<ViewFields> getFields() {
81+
return this.fields;
82+
}
83+
public void setFields(List<ViewFields> fields) {
84+
this.fields = fields;
85+
}
86+
8787
}

mozu-java-core/src/main/java/com/mozu/api/contracts/core/UserSystemData.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,6 @@ public class UserSystemData implements Serializable
1919
// Default Serial Version UID
2020
private static final long serialVersionUID = 1L;
2121

22-
/**
23-
* Date and time when the entity was created, represented in UTC Date/Time.
24-
*/
25-
protected DateTime createdOn;
26-
27-
public DateTime getCreatedOn() {
28-
return this.createdOn;
29-
}
30-
31-
public void setCreatedOn(DateTime createdOn) {
32-
this.createdOn = createdOn;
33-
}
34-
3522
/**
3623
* The number of failed authentication attempts associated with the user.
3724
*/
@@ -149,4 +136,17 @@ public void setUpdatedOn(DateTime updatedOn) {
149136
this.updatedOn = updatedOn;
150137
}
151138

139+
/**
140+
* Date and time when the entity was created, represented in UTC Date/Time.
141+
*/
142+
protected DateTime createdOn;
143+
144+
public DateTime getCreatedOn() {
145+
return this.createdOn;
146+
}
147+
148+
public void setCreatedOn(DateTime createdOn) {
149+
this.createdOn = createdOn;
150+
}
151+
152152
}

mozu-java-core/src/main/java/com/mozu/api/contracts/core/extensible/Attribute.java

Lines changed: 63 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -25,69 +25,6 @@ public class Attribute implements Serializable
2525
// Default Serial Version UID
2626
private static final long serialVersionUID = 1L;
2727

28-
protected Boolean isMultiValued;
29-
30-
public Boolean getIsMultiValued() {
31-
return this.isMultiValued;
32-
}
33-
34-
public void setIsMultiValued(Boolean isMultiValued) {
35-
this.isMultiValued = isMultiValued;
36-
}
37-
38-
protected Boolean isRequired;
39-
40-
public Boolean getIsRequired() {
41-
return this.isRequired;
42-
}
43-
44-
public void setIsRequired(Boolean isRequired) {
45-
this.isRequired = isRequired;
46-
}
47-
48-
protected Boolean isVisible;
49-
50-
public Boolean getIsVisible() {
51-
return this.isVisible;
52-
}
53-
54-
public void setIsVisible(Boolean isVisible) {
55-
this.isVisible = isVisible;
56-
}
57-
58-
/**
59-
* Namespace associated with this extensible attribute.
60-
*/
61-
protected String namespace;
62-
63-
public String getNamespace() {
64-
return this.namespace;
65-
}
66-
67-
public void setNamespace(String namespace) {
68-
this.namespace = namespace;
69-
}
70-
71-
protected Integer order;
72-
73-
public Integer getOrder() {
74-
return this.order;
75-
}
76-
77-
public void setOrder(Integer order) {
78-
this.order = order;
79-
}
80-
81-
protected String valueType;
82-
83-
public String getValueType() {
84-
return this.valueType;
85-
}
86-
87-
public void setValueType(String valueType) {
88-
this.valueType = valueType;
89-
}
90-
9128
/**
9229
* Name of this extensible attribute defined in Mozu Admin.
9330
*/
@@ -183,6 +120,69 @@ public void setIsActive(Boolean isActive) {
183120
this.isActive = isActive;
184121
}
185122

123+
protected Boolean isMultiValued;
124+
125+
public Boolean getIsMultiValued() {
126+
return this.isMultiValued;
127+
}
128+
129+
public void setIsMultiValued(Boolean isMultiValued) {
130+
this.isMultiValued = isMultiValued;
131+
}
132+
133+
protected Boolean isRequired;
134+
135+
public Boolean getIsRequired() {
136+
return this.isRequired;
137+
}
138+
139+
public void setIsRequired(Boolean isRequired) {
140+
this.isRequired = isRequired;
141+
}
142+
143+
protected Boolean isVisible;
144+
145+
public Boolean getIsVisible() {
146+
return this.isVisible;
147+
}
148+
149+
public void setIsVisible(Boolean isVisible) {
150+
this.isVisible = isVisible;
151+
}
152+
153+
/**
154+
* Namespace associated with this extensible attribute.
155+
*/
156+
protected String namespace;
157+
158+
public String getNamespace() {
159+
return this.namespace;
160+
}
161+
162+
public void setNamespace(String namespace) {
163+
this.namespace = namespace;
164+
}
165+
166+
protected Integer order;
167+
168+
public Integer getOrder() {
169+
return this.order;
170+
}
171+
172+
public void setOrder(Integer order) {
173+
this.order = order;
174+
}
175+
176+
protected String valueType;
177+
178+
public String getValueType() {
179+
return this.valueType;
180+
}
181+
182+
public void setValueType(String valueType) {
183+
this.valueType = valueType;
184+
}
185+
186186
/**
187187
* List of metadata key-value pairs defined for an extensible attribute.
188188
*/

mozu-java-core/src/main/java/com/mozu/api/contracts/customer/CustomerContact.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
import java.io.Serializable;
1111
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
1212
import org.joda.time.DateTime;
13+
import com.mozu.api.contracts.customer.ContactType;
1314
import com.mozu.api.contracts.core.Address;
1415
import com.mozu.api.contracts.core.AuditInfo;
1516
import com.mozu.api.contracts.core.Phone;
16-
import com.mozu.api.contracts.customer.ContactType;
1717

1818
/**
1919
* Contact information, including the contact's name, address, phone numbers, email addresses, and company (if supplied). Also indicates whether this is a billing, shipping, or billing and shipping contact.
@@ -135,6 +135,14 @@ public void setMiddleNameOrInitial(String middleNameOrInitial) {
135135
this.middleNameOrInitial = middleNameOrInitial;
136136
}
137137

138+
protected List<ContactType> types;
139+
public List<ContactType> getTypes() {
140+
return this.types;
141+
}
142+
public void setTypes(List<ContactType> types) {
143+
this.types = types;
144+
}
145+
138146
/**
139147
* Address associated with the customer account contact.
140148
*/
@@ -174,12 +182,4 @@ public void setPhoneNumbers(Phone phoneNumbers) {
174182
this.phoneNumbers = phoneNumbers;
175183
}
176184

177-
protected List<ContactType> types;
178-
public List<ContactType> getTypes() {
179-
return this.types;
180-
}
181-
public void setTypes(List<ContactType> types) {
182-
this.types = types;
183-
}
184-
185185
}

0 commit comments

Comments
 (0)