Package stub.ItemCustomerStub

Examples of stub.ItemCustomerStub.SearchProduct


    }
  }

  public String search(String item) {
    try {
      search = new SearchProduct();
      search.setDescription(item);
      searchResponse = customerStub.searchProduct(search);
      return searchResponse.get_return();
    } catch (RemoteException e) {
      e.printStackTrace(System.err);
View Full Code Here

TOP

Related Classes of stub.ItemCustomerStub.SearchProduct

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.