if (command.equals("new")) {
String response = http.sendString(baseUrl + "/inventory", "", HTTPMixIn.HTTP_GET);
if (response.equals("false")) {
http.sendString(baseUrl + "/inventory/create", "", HTTPMixIn.HTTP_OPTIONS);
}
System.out.println(http.sendString(baseUrl + "/order", "", HTTPMixIn.HTTP_POST));
} else if (command.equals("get")) {
if (args.length != 2) {
System.out.println("No orderId found!");
System.out.println("Usage: get <orderId>");
}