trait
EventService extends AnyRef
Abstract Value Members
-
abstract
def
addEvent(event: Event): Unit
-
abstract
def
addObjectEvent(user: Option[User], object_id: UUID, object_name: String, action_type: String): Unit
-
abstract
def
addRequestEvent(user: Option[User], targetuser: User, object_id: UUID, object_name: String, action_type: String): Unit
-
abstract
def
addSourceEvent(user: Option[User], object_id: UUID, object_name: String, source_id: UUID, source_name: String, action_type: String): Unit
-
abstract
def
addUserEvent(user: Option[User], action_type: String): Unit
-
abstract
def
getCommentEvent(user: User, limit: Option[Integer]): List[Event]
-
abstract
def
getEvents(id: String, id_type: String, limit: Option[Integer]): SalatMongoCursor[Event]
-
abstract
def
getEvents(followedEntities: List[TypedID], limit: Option[Integer]): List[Event]
-
abstract
def
getEventsByTime(followedEntities: List[TypedID], time: Date, limit: Option[Integer]): List[Event]
-
abstract
def
getEventsByUser(user: User, limit: Option[Integer]): List[Event]
-
abstract
def
getEventsOfType(following: List[UUID], id_type: String, limit: Option[Integer]): List[Event]
-
abstract
def
getLatestNEventsOfType(n: Int, event_type: Option[String]): List[Event]
-
abstract
def
getRequestEvents(targetuser: Option[User], limit: Option[Integer]): List[Event]
-
abstract
def
listEvents(): List[Event]
-
abstract
def
updateAuthorFullName(userId: UUID, fullName: String): Unit
-
abstract
def
updateObjectName(id: UUID, name: 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 definition to interact with Events database.