Uses of Class
in.cs699.tensors.delagram.entity.User
-
-
Uses of User in in.cs699.tensors.delagram.auth_service.controller
Methods in in.cs699.tensors.delagram.auth_service.controller that return User Modifier and Type Method Description User
AuthController. getUserForToken(String authorizationToken)
An API end-point that gives back the logged-in user for the authorization token -
Uses of User in in.cs699.tensors.delagram.auth_service.service
Methods in in.cs699.tensors.delagram.auth_service.service that return User Modifier and Type Method Description User
AuthService. verifyTokenAndGetUser(String authorizationToken)
This method is a wrapper for verifying the Firebase token, and returning the associated user object -
Uses of User in in.cs699.tensors.delagram.content_upload_service.repository
Methods in in.cs699.tensors.delagram.content_upload_service.repository that return User Modifier and Type Method Description User
UploadDataAccess. fetchUserByID(String currentUserID)
An abstraction that allows to fetch the currently logged in user, by the user idUser
UploadDataAccessFirebase. fetchUserByID(String currentUserID)
The implementation of the abstraction, based on Firebase Firestore database -
Uses of User in in.cs699.tensors.delagram.content_upload_service.service
Methods in in.cs699.tensors.delagram.content_upload_service.service that return User Modifier and Type Method Description User
UploadService. fetchUser(String currentUserID)
This service is used to fetch the currently logged in userUser
UploadServiceImpl. fetchUser(String currentUserID)
The implementation that helps in fetching the current logged in user from the databaseMethods in in.cs699.tensors.delagram.content_upload_service.service with parameters of type User Modifier and Type Method Description void
UploadService. updateUserObject(User currentUser, Memory memory)
A service that can be used to update the current user's portfolio with the newly uploaded memory.void
UploadServiceImpl. updateUserObject(User currentUser, Memory memory)
The implementation of updating the user object with their new memory. -
Uses of User in in.cs699.tensors.delagram.content_view_service.repository
Methods in in.cs699.tensors.delagram.content_view_service.repository that return User Modifier and Type Method Description User
ContentViewRepository. fetchUserByID(String currentUserID)
An abstraction that allows to fetch the user associated with a certain user id.User
ContentViewRepositoryFirebase. fetchUserByID(String currentUserID)
An implementation for fetching the user given by the id. -
Uses of User in in.cs699.tensors.delagram.profile_search_service.controller
Methods in in.cs699.tensors.delagram.profile_search_service.controller that return User Modifier and Type Method Description User
ProfileSearchController. getUserByID(String authorizationToken, Map<String,Object> payload)
This end-point lets a user search another user by user-id. -
Uses of User in in.cs699.tensors.delagram.profile_search_service.repository
Methods in in.cs699.tensors.delagram.profile_search_service.repository that return User Modifier and Type Method Description User
ProfileSearchDataAccess. fetchUserByID(String userID)
This abstraction lets fetching of user by the id.User
ProfileSearchDataAccessImpl. fetchUserByID(String userID)
An implementation to fetch the user against the searched user id.Methods in in.cs699.tensors.delagram.profile_search_service.repository with parameters of type User Modifier and Type Method Description boolean
ProfileSearchDataAccess. updateCircleForUsers(User currentUser, User targetUser)
This abstraction lets addition of user in circle.boolean
ProfileSearchDataAccessImpl. updateCircleForUsers(User currentUser, User targetUser)
An implementation to add users in each others' circles. -
Uses of User in in.cs699.tensors.delagram.profile_search_service.service
Methods in in.cs699.tensors.delagram.profile_search_service.service that return User Modifier and Type Method Description User
ProfileSearchService. fetchUserByID(String userID)
This service lets the currently logged-in user search for a user by the user id.User
ProfileSearchServiceImpl. fetchUserByID(String userID)
An implementation for the logic of search a user by user id.
-