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 UserAuthController. 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 UserAuthService. 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 UserUploadDataAccess. fetchUserByID(String currentUserID)An abstraction that allows to fetch the currently logged in user, by the user idUserUploadDataAccessFirebase. 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 UserUploadService. fetchUser(String currentUserID)This service is used to fetch the currently logged in userUserUploadServiceImpl. 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 voidUploadService. updateUserObject(User currentUser, Memory memory)A service that can be used to update the current user's portfolio with the newly uploaded memory.voidUploadServiceImpl. 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 UserContentViewRepository. fetchUserByID(String currentUserID)An abstraction that allows to fetch the user associated with a certain user id.UserContentViewRepositoryFirebase. 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 UserProfileSearchController. 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 UserProfileSearchDataAccess. fetchUserByID(String userID)This abstraction lets fetching of user by the id.UserProfileSearchDataAccessImpl. 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 booleanProfileSearchDataAccess. updateCircleForUsers(User currentUser, User targetUser)This abstraction lets addition of user in circle.booleanProfileSearchDataAccessImpl. 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 UserProfileSearchService. fetchUserByID(String userID)This service lets the currently logged-in user search for a user by the user id.UserProfileSearchServiceImpl. fetchUserByID(String userID)An implementation for the logic of search a user by user id.
-