Class InventoryItem

All Implemented Interfaces:
Storable

public class InventoryItem extends ShoppingListItem
This class is a simple bean for an inventory item. This is an item with a quantity, a unit and an expiration date.
  • Field Details

    • inventoryId

      private int inventoryId
    • expirationDate

      private final int expirationDate
  • Constructor Details

    • InventoryItem

      public InventoryItem(int itemId, String name, String category, String allergy, int quantity, String unit, int expirationDate)
      Constructor for the InventoryItem class.
      Parameters:
      name - the name of the item
      category - the category of the item
      allergy - the allergy of the item
      quantity - the quantity of the item
      unit - the unit of the item
      expirationDate - the expiration date of the item
    • InventoryItem

      public InventoryItem(int inventoryId, int itemId, String name, String category, String allergy, int quantity, String unit, int expirationDate)
      Constructor for the InventoryItem class.
      Parameters:
      inventoryId - the id of the inventory item
      itemId - the id of the item
      name - the name of the item
      category - the category of the item
      allergy - the allergy of the item
      quantity - the quantity of the item
      unit - the unit of the item
      expirationDate - the expiration date of the item
  • Method Details

    • getAttributes

      public List<String> getAttributes()
      Returns the attributes of the inventory item.
      Specified by:
      getAttributes in interface Storable
      Overrides:
      getAttributes in class ShoppingListItem
      Returns:
      the attributes of the inventory item
    • getAttributeNames

      public List<String> getAttributeNames()
      Returns the attribute names of the inventory item.
      Specified by:
      getAttributeNames in interface Storable
      Overrides:
      getAttributeNames in class ShoppingListItem
      Returns:
      the attribute names of the inventory item
    • getId

      public int getId()
      Returns the id of the inventory item.
      Specified by:
      getId in interface Storable
      Overrides:
      getId in class ShoppingListItem
      Returns:
      the id of the inventory item
    • getIdName

      public String getIdName()
      Returns the name of the id.
      Specified by:
      getIdName in interface Storable
      Overrides:
      getIdName in class ShoppingListItem
      Returns:
      the name of the id
    • getExpirationDate

      public int getExpirationDate()
      Getter method for the expiration date.
      Returns:
      the expiration date
    • getInventoryId

      public int getInventoryId()
      Getter method for the inventory id.
      Returns:
      the inventory id