Package com.emc.plants.pojo.beans

Examples of com.emc.plants.pojo.beans.StoreItem


  }

  @Test
  public void testGetItem() {
    String inventoryID = "F0003";
    StoreItem item = catalog.getItem(inventoryID);
    assertEquals("Result", 0, item.getCategory());
  }
View Full Code Here


   * @param inventoryID - ID of the Inventory item desired.
   * @return StoreItem
   */
  public StoreItem getItem(String inventoryID)
  {
    return new StoreItem(getItemInventory(inventoryID));
  }
View Full Code Here

TOP

Related Classes of com.emc.plants.pojo.beans.StoreItem

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.