Uses of Class
ntnu.idatt2016.v233.SmartMat.entity.group.ShoppingList
Packages that use ShoppingList
Package
Description
-
Uses of ShoppingList in ntnu.idatt2016.v233.SmartMat.controller.group
Methods in ntnu.idatt2016.v233.SmartMat.controller.group that return types with arguments of type ShoppingListModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<ShoppingList>ShoppingListController.getAllShoppingListsByGroupId(long id, org.springframework.security.core.Authentication auth) Gets a shopping list by its group IDorg.springframework.http.ResponseEntity<ShoppingList>ShoppingListController.getShoppingListById(long id, org.springframework.security.core.Authentication auth) Gets a shopping list by its IDorg.springframework.http.ResponseEntity<ShoppingList>ShoppingListController.removeProductFromShoppingList(String shoppingListId, String ean, org.springframework.security.core.Authentication auth) Removes a product from a shopping list -
Uses of ShoppingList in ntnu.idatt2016.v233.SmartMat.entity.product
Methods in ntnu.idatt2016.v233.SmartMat.entity.product with parameters of type ShoppingListModifier and TypeMethodDescriptionvoidProduct.addShoppingList(ShoppingList shoppingList) Adds a shopping list to the product -
Uses of ShoppingList in ntnu.idatt2016.v233.SmartMat.repository.group
Methods in ntnu.idatt2016.v233.SmartMat.repository.group that return types with arguments of type ShoppingListModifier and TypeMethodDescriptionShoppingListRepository.findAllByGroupUserUserUsername(String username) Gets all shopping lists by the username of the userShoppingListRepository.getByGroupGroupId(long id) Gets a shopping list by its group ID -
Uses of ShoppingList in ntnu.idatt2016.v233.SmartMat.service.group
Methods in ntnu.idatt2016.v233.SmartMat.service.group that return types with arguments of type ShoppingListModifier and TypeMethodDescriptionShoppingListService.addProductToShoppingList(long ean, long shoppingListId) Adds a product to a shopping listShoppingListService.getAllShoppingLists()Gets all shopping listsShoppingListService.getShoppingListByGroupId(long id) Gets a shopping list by its group IDShoppingListService.getShoppingListById(long id) Gets a shopping list by its IDShoppingListService.removeProductFromShoppingList(long ean, long shoppingListId) Removes a product from a shopping list