Uses of Class
lumis.service.socialnetworkservices.microblog.entity.Post
-
Packages that use Post Package Description lumis.service.socialnetworkservices.microblog.core.manager -
-
Uses of Post in lumis.service.socialnetworkservices.microblog.core.manager
Methods in lumis.service.socialnetworkservices.microblog.core.manager that return Post Modifier and Type Method Description Post
PostManager. findById(String postId)
Method used to find a post by it's id.Methods in lumis.service.socialnetworkservices.microblog.core.manager that return types with arguments of type Post Modifier and Type Method Description List<Post>
PostManager. findByOwnerId(String ownerId)
Method that retrieves a list of posts given an owner id.List<Post>
PostManager. findUserNetworkPosts(String userId, String searchKeyword, String serviceInstanceId, String socialNetworkId)
Method designed to retrieve posts that contains keywords specified by the user.List<Post>
PostManager. getPostsUsingHashtag(String serviceInstanceId, String hashtag)
Returns a list of posts that contains a given hashtag.List<Post>
PostManager. getUserWallPosts(String userId, String socialNetworkId, String serviceInstanceId, boolean isRefresh)
Returns the user wall posts.Methods in lumis.service.socialnetworkservices.microblog.core.manager with parameters of type Post Modifier and Type Method Description void
PostManager. remove(Post post)
Method that deletes an user postvoid
PostManager. removePostWithDependencies(Post post)
Method that deletes an user post and all related data, i.e., associated entities attached to it (Comments, PostAttachments, Hashtags)
-