Uses of Class
com.jms.socialmedia.model.Comment
-
Packages that use Comment Package Description com.jms.socialmedia.cache Different Caching Implementationscom.jms.socialmedia.cache.codec com.jms.socialmedia.dataservice com.jms.socialmedia.handlers Request Handlerscom.jms.socialmedia.model com.jms.socialmedia.mybatis -
-
Uses of Comment in com.jms.socialmedia.cache
Methods in com.jms.socialmedia.cache that return Comment Modifier and Type Method Description abstract Comment
AbstractCachingService. getCommentFromCache(int commentId)
Comment
AbstractCodecCachingService. getCommentFromCache(int commentId)
Comment
CachingServiceWithMetrics. getCommentFromCache(int commentId)
Comment
GuavaCachingService. getCommentFromCache(int commentId)
Comment
JavaMapCachingService. getCommentFromCache(int commentId)
Methods in com.jms.socialmedia.cache that return types with arguments of type Comment Modifier and Type Method Description abstract Collection<Comment>
AbstractCachingService. getCommentsFromCache(int postId)
Collection<Comment>
AbstractCodecCachingService. getCommentsFromCache(int postId)
Collection<Comment>
CachingServiceWithMetrics. getCommentsFromCache(int postId)
Collection<Comment>
GuavaCachingService. getCommentsFromCache(int postId)
Collection<Comment>
JavaMapCachingService. getCommentsFromCache(int postId)
Collection<Comment>
AbstractCachingService. getCommentsFromCacheOrSupplier(int postId, Supplier<Collection<Comment>> supplier)
Methods in com.jms.socialmedia.cache with parameters of type Comment Modifier and Type Method Description abstract void
AbstractCachingService. putCommentIntoCache(Comment comment)
void
AbstractCodecCachingService. putCommentIntoCache(Comment comment)
void
CachingServiceWithMetrics. putCommentIntoCache(Comment comment)
void
GuavaCachingService. putCommentIntoCache(Comment comment)
void
JavaMapCachingService. putCommentIntoCache(Comment comment)
Method parameters in com.jms.socialmedia.cache with type arguments of type Comment Modifier and Type Method Description Collection<Comment>
AbstractCachingService. getCommentsFromCacheOrSupplier(int postId, Supplier<Collection<Comment>> supplier)
abstract void
AbstractCachingService. putCommentsFromPostIntoCache(int postId, Collection<Comment> comments)
void
AbstractCodecCachingService. putCommentsFromPostIntoCache(int postId, Collection<Comment> comments)
void
CachingServiceWithMetrics. putCommentsFromPostIntoCache(int postId, Collection<Comment> comments)
void
GuavaCachingService. putCommentsFromPostIntoCache(int postId, Collection<Comment> comments)
void
JavaMapCachingService. putCommentsFromPostIntoCache(int postId, Collection<Comment> comments)
-
Uses of Comment in com.jms.socialmedia.cache.codec
Methods in com.jms.socialmedia.cache.codec that return Comment Modifier and Type Method Description Comment
CachingCodec. decodeComment(T encodedComment)
Comment
GsonCachingCodec. decodeComment(String encodedComment)
Methods in com.jms.socialmedia.cache.codec with parameters of type Comment Modifier and Type Method Description T
CachingCodec. encodeComment(Comment comment)
String
GsonCachingCodec. encodeComment(Comment comment)
-
Uses of Comment in com.jms.socialmedia.dataservice
Methods in com.jms.socialmedia.dataservice that return Comment Modifier and Type Method Description Comment
CachingDataService. getComment(int commentId)
Comment
DataService. getComment(int commentId)
Comment
DataServiceWithMetrics. getComment(int commentId)
Comment
MockDataService. getComment(int commentId)
Comment
MybatisDataService. getComment(int commentId)
Methods in com.jms.socialmedia.dataservice that return types with arguments of type Comment Modifier and Type Method Description Collection<Comment>
CachingDataService. getComments(int postId)
Collection<Comment>
DataService. getComments(int postId)
Collection<Comment>
DataServiceWithMetrics. getComments(int postId)
Collection<Comment>
MockDataService. getComments(int postId)
Collection<Comment>
MybatisDataService. getComments(int postId)
Collection<Comment>
CachingDataService. getCommentsByUserId(int userId)
Collection<Comment>
DataService. getCommentsByUserId(int userId)
Collection<Comment>
DataServiceWithMetrics. getCommentsByUserId(int userId)
Collection<Comment>
MockDataService. getCommentsByUserId(int userId)
Collection<Comment>
MybatisDataService. getCommentsByUserId(int userId)
Methods in com.jms.socialmedia.dataservice with parameters of type Comment Modifier and Type Method Description boolean
CachingDataService. addComment(Comment comment)
boolean
DataService. addComment(Comment comment)
boolean
DataServiceWithMetrics. addComment(Comment comment)
boolean
MockDataService. addComment(Comment comment)
boolean
MybatisDataService. addComment(Comment comment)
-
Uses of Comment in com.jms.socialmedia.handlers
Methods in com.jms.socialmedia.handlers that return Comment Modifier and Type Method Description Comment
CommentRequestHandler. handleGetComment(spark.Request request, spark.Response response)
Methods in com.jms.socialmedia.handlers that return types with arguments of type Comment Modifier and Type Method Description Collection<Comment>
CommentRequestHandler. handleGetComments(spark.Request request, spark.Response response)
Collection<Comment>
CommentRequestHandler. handleGetCommentsByUserId(spark.Request request, spark.Response response)
-
Uses of Comment in com.jms.socialmedia.model
Methods in com.jms.socialmedia.model with parameters of type Comment Modifier and Type Method Description int
Comment. compareTo(Comment other)
-
Uses of Comment in com.jms.socialmedia.mybatis
Methods in com.jms.socialmedia.mybatis that return Comment Modifier and Type Method Description Comment
CommentsMapper. getComment(int commentId)
Comment
SqlSessionCommentsMapper. getComment(int commentId)
Methods in com.jms.socialmedia.mybatis that return types with arguments of type Comment Modifier and Type Method Description Collection<Comment>
CommentsMapper. getComments(int postId)
Collection<Comment>
SqlSessionCommentsMapper. getComments(int postId)
Collection<Comment>
CommentsMapper. getCommentsByUserId(int userId)
Collection<Comment>
SqlSessionCommentsMapper. getCommentsByUserId(int userId)
Methods in com.jms.socialmedia.mybatis with parameters of type Comment Modifier and Type Method Description int
CommentsMapper. addComment(Comment comment)
int
SqlSessionCommentsMapper. addComment(Comment comment)
-