Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
idatt2106-v23-03
backend
Commits
76287974
Commit
76287974
authored
1 year ago
by
Stian Lyng
Browse files
Options
Downloads
Patches
Plain Diff
update service
parent
4869bd61
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/ntnu/idatt2016/v233/SmartMat/service/RecipeService.java
+87
-0
87 additions, 0 deletions
...a/ntnu/idatt2016/v233/SmartMat/service/RecipeService.java
with
87 additions
and
0 deletions
src/main/java/ntnu/idatt2016/v233/SmartMat/service/RecipeService.java
0 → 100644
+
87
−
0
View file @
76287974
package
ntnu.idatt2016.v233.SmartMat.service
;
import
ntnu.idatt2016.v233.SmartMat.entity.Recipe
;
import
ntnu.idatt2016.v233.SmartMat.repository.RecipeRepository
;
import
java.util.List
;
import
java.util.Optional
;
/**
* This class defines the methods for the recipe service
*
* @author Stian Lyng
* @version 1.0
*/
public
class
RecipeService
{
/**
* The recipe repository
*/
private
RecipeRepository
recipeRepository
;
/**
* Creates a new recipe service
* @param recipeRepository
*/
public
RecipeService
(
RecipeRepository
recipeRepository
)
{
this
.
recipeRepository
=
recipeRepository
;
}
/**
* Gets a recipe by its id
*
* @param id the id of the recipe
* @return an optional containing the recipe if it exists
*/
public
Optional
<
Recipe
>
getRecipeById
(
Long
id
)
{
return
recipeRepository
.
findById
(
id
);
}
/**
* Gets all recipes with a given name
*
* @param name the name of the recipe
* @return a list of recipes with the given name
*/
public
List
<
Recipe
>
getRecipesByName
(
String
name
)
{
return
recipeRepository
.
getByName
(
name
);
}
/**
* Gets all recipes
*
* @return a list of all recipes
*/
public
List
<
Recipe
>
getAllRecipes
()
{
return
recipeRepository
.
findAll
();
}
/**
* Saves a recipe
*
* @param recipe the recipe to save
* @return the saved recipe
*/
public
Recipe
saveRecipe
(
Recipe
recipe
)
{
return
recipeRepository
.
save
(
recipe
);
}
/**
* Deletes a recipe
*
* @param recipe a recipe object to delete
*/
public
void
deleteRecipe
(
Recipe
recipe
)
{
recipeRepository
.
delete
(
recipe
);
}
/**
* Deletes a recipe by its id
*
* @param id the id of the recipe to delete
*/
public
void
deleteRecipeById
(
Long
id
)
{
recipeRepository
.
deleteById
(
id
);
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment