Package com.centraview.account.inventory

Examples of com.centraview.account.inventory.InventoryLocal


  public void deleteInventory(int individualID, int itemId) throws InventoryException,
      AuthorizationFailedException, NamingException, CreateException
  {
    InitialContext ic = CVUtility.getInitialContext();
    InventoryLocalHome home = (InventoryLocalHome) ic.lookup("local/Inventory");
    InventoryLocal invoice = home.create();
    invoice.setDataSource(this.dataSource);
    invoice.deleteInventory(individualID, itemId);
  }
View Full Code Here

TOP

Related Classes of com.centraview.account.inventory.InventoryLocal

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.