Class RestockReport.RestockItem

java.lang.Object
csce331.group13.project2.backend.RestockReport.RestockItem
Enclosing class:
RestockReport

public static class RestockReport.RestockItem extends Object
Represents an inventory item that needs restocking.
Author:
Austin Glander, Kade Mertins
  • Constructor Details

    • RestockItem

      public RestockItem(String itemName, int quantity)
      Constructs a RestockItem with the specified item name and current quantity.
      Parameters:
      itemName - The name of the inventory item.
      quantity - The current stock quantity.
  • Method Details

    • getItemName

      public String getItemName()
      Gets the item name.
      Returns:
      The inventory item name.
    • getQuantity

      public int getQuantity()
      Gets the current quantity in stock.
      Returns:
      The current stock quantity.