Skip to content

Commit

Permalink
Merge pull request #1 from ariimo/main
Browse files Browse the repository at this point in the history
_
  • Loading branch information
ShapeLayer authored May 9, 2024
2 parents ce2cd3e + efedc2b commit 25af315
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 0 deletions.
Binary file modified rendered/BookSuggestion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified rendered/UserManagement.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified rendered/UserProfileInventory.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/BookSuggestion.puml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class BookSuggestionManager implements Manager {
}
BookSuggestionManager --- BookSuggestionManualRequest : use
BookSuggestionManager --- BookSuggestionScheduler : use
BookSuggestionManager --- BookSuggestionStorageController : use

class BookSuggestionStorageController<T> implements StorageController {}
BookSuggestionStorageController --- BookSuggestion : use
Expand Down
2 changes: 2 additions & 0 deletions src/UserManagement.puml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@ class UserManager implements Manager {
+ void Register(User _new)
}
UserManager --- User : use
UserManager --- UserStorageController : use

class UserSessionManager implements Manager {
+ void LoginUser(String loginID, String loginPasswordHash)
+ void Logout()
+ User GetCurrentLogin()
}
UserSessionManager --- User : use
UserSessionManager --- UserStorageController : use

class UserStorageController<T> implements StorageController {}
UserStorageController --- User : use
Expand Down
2 changes: 2 additions & 0 deletions src/UserProfileInventory.puml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class UserInventoryManager implements Manager {
}

UserInventoryManager --- UserInventory : use
UserInventoryManager --- UserInventoryStorageController : use

class UserInventoryStorageController<T> implements StorageController {}
UserInventoryStorageController --- User : use
Expand Down Expand Up @@ -92,6 +93,7 @@ class UserProfileManager implements Manager {
UserProfileManager --- UserUUID : use
UserProfileManager --- UserProfile : use
UserProfileManager --- ProfileDisplayObject : use
UserProfileManager --- UserProfileStorageController : use

class UserProfileStorageController<T> implements StorageController {}

Expand Down

0 comments on commit 25af315

Please sign in to comment.