/* * Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.switchyard.quickstarts.rest.binding; import org.switchyard.component.test.mixins.http.HTTPMixIn; import org.switchyard.common.codec.Base64; /** * Client for RESTEasy binding. * * @author Magesh Kumar B <mageshbk@jboss.com> (C) 2012 Red Hat Inc. */ public class RESTEasyBindingClient { private static final String BASE_URL = "http://10.15.1.10:8080/rest-binding"; private static String[] userPass = new String[] { "anonymous", "anonymous123!" }; public static void main(String[] args) throws Exception { String command = null; if (args.length == 0) { System.out.println("Usage: RESTEasyBindingClient new|get|add|del [orderId] [itemId]"); System.out.println(" new - create a new Order"); System.out.println(" get - retreive an Order"); System.out.println(" add - add an item to an Order"); System.out.println(" del - delete an item from an Order"); System.out.println("\t CamelCxfRsBindingClient new"); System.out.println("\t CamelCxfRsBindingClient get 1"); System.out.println("\t CamelCxfRsBindingClient add 1 1 10"); System.out.println("\t CamelCxfRsBindingClient del 1 3"); return; } else { command = args[0]; HTTPMixIn http = new HTTPMixIn(); if (userPass != null && userPass.length == 2) { http.setRequestHeader("Authorization", "Basic " + Base64.encodeFromString(userPass[0] + ":" + userPass[1])); } http.initialize(); if (command.equals("new")) { String response = http.sendString(BASE_URL + "/inventory", "", HTTPMixIn.HTTP_GET); if (response.equals("false")) { http.sendString(BASE_URL + "/inventory/create", "", HTTPMixIn.HTTP_OPTIONS); } System.out.println(http.sendString(BASE_URL + "/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>"); } System.out.println(http.sendString(BASE_URL + "/order/" + args[1], "", HTTPMixIn.HTTP_GET)); } else if (command.equals("add")) { if (args.length < 2) { System.out.println("No orderId found!"); System.out.println("Usage: get <orderId> <itemId> <quantity>"); } if (args.length < 3) { System.out.println("No itemId found!"); System.out.println("Usage: get <orderId> <itemId> <quantity>"); } if (args.length < 4) { System.out.println("No quantity found!"); System.out.println("Usage: get <orderId> <itemId> <quantity>"); } String order = "<order>" + " <orderId>" + args[1] + "</orderId>" + " <orderItem>" + " <item>" + " <itemId>" + args[2] + "</itemId>" + " </item>" + " <quantity>" + args[3]+ "</quantity>" + " </orderItem>" + "</order>"; System.out.println(http.sendString(BASE_URL + "/order/item", order, HTTPMixIn.HTTP_PUT)); } else if (command.equals("del")) { if (args.length < 2) { System.out.println("No orderId found!"); System.out.println("Usage: get <orderId> <itemId>"); } if (args.length < 3) { System.out.println("No itemId found!"); System.out.println("Usage: get <orderId> <itemId>"); } System.out.println(http.sendString(BASE_URL + "/order/" + args[1] + ":" + args[2], "", HTTPMixIn.HTTP_DELETE)); } } } }