Merge remote-tracking branch 'upstream/master' into fix-no-content

Conflicts:
	samples/client/petstore/java/src/main/java/com/wordnik/client/ApiInvoker.java
This commit is contained in:
Andrew Young
2013-12-02 13:42:15 -08:00
17 changed files with 91 additions and 20 deletions

View File

@@ -146,4 +146,3 @@ public class ApiInvoker {
return hostMap.get(host);
}
}

View File

@@ -10,6 +10,7 @@ public class Order {
private Integer quantity = null;
/* Status of the order */
private String status = null;
//public enum statusEnum { placed, approved, delivered, };
/* Date shipped, only if it has been */
private Date shipDate = null;
public Long getId() {

View File

@@ -16,6 +16,7 @@ public class Pet {
private List<Tag> tags = new ArrayList<Tag>();
/* pet status in the store */
private String status = null;
//public enum statusEnum { available, pending, sold, };
public Long getId() {
return id;
}

View File

@@ -17,6 +17,7 @@ public class User {
private String phone = null;
/* User Status */
private Integer userStatus = null;
//public enum userStatusEnum { 1-registered, 2-active, 3-closed, };
public Long getId() {
return id;
}