trait
CommentService extends AnyRef
Abstract Value Members
-
abstract
def
editComment(id: UUID, commentText: String): Unit
-
abstract
def
findCommentsByCommentId(id: UUID): List[Comment]
-
abstract
def
findCommentsByDatasetId(id: UUID, asTree: Boolean = true): List[Comment]
-
abstract
def
findCommentsByFileId(id: UUID): List[Comment]
-
abstract
def
findCommentsBySectionId(id: UUID): List[Comment]
-
abstract
def
get(commentIds: List[UUID]): DBResult[Comment]
-
abstract
def
get(commentId: UUID): Option[Comment]
-
abstract
def
insert(comment: Comment): Option[String]
-
abstract
def
removeComment(id: UUID): Unit
-
abstract
def
removeComment(c: Comment): Unit
-
abstract
def
updateAuthorFullName(userId: UUID, fullName: String): Unit
Concrete Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
Service to manipulate comments in datasets and files.