Skip to content

Commit

Permalink
Merge pull request #76 from bhewett/master
Browse files Browse the repository at this point in the history
Bump version to coincide with Release 5.1
  • Loading branch information
Bob Hewett committed Oct 16, 2014
2 parents 97d1060 + 8b5e583 commit 30b8e87
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 46 deletions.
2 changes: 1 addition & 1 deletion mozu-java-core/src/main/java/com/mozu/api/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

public class Version
{
public final static String API_VERSION = "1.11.14269.0";
public final static String API_VERSION = "1.12.14289.0";
}
Original file line number Diff line number Diff line change
Expand Up @@ -525,16 +525,6 @@ public void setOriginalCartId(String originalCartId) {
this.originalCartId = originalCartId;
}

protected String parentOrderId;

public String getParentOrderId() {
return this.parentOrderId;
}

public void setParentOrderId(String parentOrderId) {
this.parentOrderId = parentOrderId;
}

/**
* If this order was created to fulfill an item replacement as part of a return merchandise authorization (RMA), the unique identifier of the return.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,6 @@ public class ProductOption implements Serializable
// Default Serial Version UID
private static final long serialVersionUID = 1L;

/**
* If the value if an object, the value selected.
*/
protected Object value;

public Object getValue() {
return this.value;
}

public void setValue(Object value) {
this.value = value;
}

/**
* The fully qualified name of the attribute, which is a user defined attribute identifier.
*/
Expand Down Expand Up @@ -97,4 +84,17 @@ public void setStringValue(String stringValue) {
this.stringValue = stringValue;
}

/**
* If the value if an object, the value selected.
*/
protected Object value;

public Object getValue() {
return this.value;
}

public void setValue(Object value) {
this.value = value;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ public class ListView implements Serializable
// Default Serial Version UID
private static final long serialVersionUID = 1L;

protected String defaultSort;

public String getDefaultSort() {
return this.defaultSort;
}

public void setDefaultSort(String defaultSort) {
this.defaultSort = defaultSort;
}

/**
* A set of expressions that consist of a field, operator, and value and represent search parameter syntax when filtering results of a query. Valid operators include equals (eq), does not equal (ne), greater than (gt), less than (lt), greater than or equal to (ge), less than or equal to (le), starts with (sw), or contains (cont). For example - "filter=IsDisplayed+eq+true"
*/
Expand Down Expand Up @@ -59,16 +69,6 @@ public void setUsages(List<String> usages) {
this.usages = usages;
}

protected String defaultSort;

public String getDefaultSort() {
return this.defaultSort;
}

public void setDefaultSort(String defaultSort) {
this.defaultSort = defaultSort;
}

protected List<ListViewField> fields;
public List<ListViewField> getFields() {
return this.fields;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,29 @@ public class ShippingRateLocalizedContent implements Serializable
private static final long serialVersionUID = 1L;

/**
* The name of the shipping rate in the language specified by the defined locale code.
* Language used for the entity. Currently, only "en-US" is supported.
*/
protected String name;
protected String localeCode;

public String getName() {
return this.name;
public String getLocaleCode() {
return this.localeCode;
}

public void setName(String name) {
this.name = name;
public void setLocaleCode(String localeCode) {
this.localeCode = localeCode;
}

/**
* Language used for the entity. Currently, only "en-US" is supported.
* The name of the shipping rate in the language specified by the defined locale code.
*/
protected String localeCode;
protected String name;

public String getLocaleCode() {
return this.localeCode;
public String getName() {
return this.name;
}

public void setLocaleCode(String localeCode) {
this.localeCode = localeCode;
public void setName(String name) {
this.name = name;
}

}

0 comments on commit 30b8e87

Please sign in to comment.