case class DbProcessActivityRepository(dbConfig: DbConfig) extends ProcessActivityRepository with LazyLogging with BasicRepository with EspTables with CommentActions with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DbProcessActivityRepository
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. CommentActions
  7. EspTables
  8. AttachmentEntityFactory
  9. TagsEntityFactory
  10. ProcessActionEntityFactory
  11. EnvironmentsEntityFactory
  12. ProcessVersionEntityFactory
  13. CommentEntityFactory
  14. ProcessEntityFactory
  15. BaseEntityFactory
  16. BasicRepository
  17. Repository
  18. LazyLogging
  19. ProcessActivityRepository
  20. AnyRef
  21. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DbProcessActivityRepository(dbConfig: DbConfig)

Type Members

  1. class AttachmentEntity extends slick.jdbc.JdbcProfile.API.Table[AttachmentEntityData]
    Definition Classes
    AttachmentEntityFactory
  2. class CommentEntity extends slick.jdbc.JdbcProfile.API.Table[CommentEntityData]
    Definition Classes
    CommentEntityFactory
  3. class EnvironmentsEntity extends slick.jdbc.JdbcProfile.API.Table[EnvironmentsEntityData]
    Definition Classes
    EnvironmentsEntityFactory
  4. class ProcessActionEntity extends slick.jdbc.JdbcProfile.API.Table[ProcessActionEntityData]
    Definition Classes
    ProcessActionEntityFactory
  5. class ProcessEntity extends slick.jdbc.JdbcProfile.API.Table[ProcessEntityData]
    Definition Classes
    ProcessEntityFactory
  6. abstract class BaseProcessVersionEntity extends slick.jdbc.JdbcProfile.API.Table[ProcessVersionEntityData]
    Definition Classes
    ProcessVersionEntityFactory
  7. class ProcessVersionEntity extends BaseProcessVersionEntity
    Definition Classes
    ProcessVersionEntityFactory
  8. class ProcessVersionEntityNoJson extends BaseProcessVersionEntity
    Definition Classes
    ProcessVersionEntityFactory
  9. class TagsEntity extends slick.jdbc.JdbcProfile.API.Table[TagsEntityData]
    Definition Classes
    TagsEntityFactory

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addAttachment(attachmentToAdd: AttachmentToAdd)(implicit ec: ExecutionContext, loggedUser: LoggedUser): Future[Unit]
  5. def addComment(processId: ProcessId, processVersionId: VersionId, comment: Comment)(implicit ec: ExecutionContext, loggedUser: LoggedUser): Future[Unit]
  6. lazy val api: API
    Attributes
    protected
    Definition Classes
    Repository
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val attachmentsTable: TableQuery[AttachmentEntity]
    Definition Classes
    AttachmentEntityFactory
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  10. val commentsTable: TableQuery[CommentEntity]
    Definition Classes
    CommentEntityFactory
  11. val dbConfig: DbConfig
  12. def deleteComment(commentId: Long)(implicit ec: ExecutionContext): Future[Unit]
  13. implicit def deploymentMapper: JdbcType[ProcessActionType] with BaseTypedType[ProcessActionType]
    Definition Classes
    BaseEntityFactory
  14. val environmentsTable: TableQuery[EnvironmentsEntity]
    Definition Classes
    EnvironmentsEntityFactory
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def findActivity(processId: ProcessIdWithName)(implicit ec: ExecutionContext): Future[ProcessActivity]
  17. def findAttachment(attachmentId: Long)(implicit ec: ExecutionContext): Future[Option[AttachmentEntityData]]
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. lazy val logger: Logger
    Attributes
    protected
    Definition Classes
    LazyLogging
    Annotations
    @transient()
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def newCommentAction(processId: ProcessId, processVersionId: VersionId, comment: Comment)(implicit ec: ExecutionContext, loggedUser: LoggedUser): DB[Option[Long]]
    Definition Classes
    CommentActions
  23. def nextIdAction[T <: JdbcProfile](implicit jdbcProfile: T): slick.jdbc.JdbcProfile.API.DBIO[Long]
    Definition Classes
    CommentActions
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. implicit def procesIdMapping: slick.jdbc.JdbcProfile.API.BaseColumnType[ProcessId]
    Definition Classes
    BaseEntityFactory
  27. val processActionsTable: TableQuery[ProcessActionEntity]
    Definition Classes
    ProcessActionEntityFactory
  28. val processVersionsTable: slick.jdbc.JdbcProfile.API.TableQuery[ProcessVersionEntity]
    Definition Classes
    ProcessVersionEntityFactory
  29. val processVersionsTableNoJson: slick.jdbc.JdbcProfile.API.TableQuery[ProcessVersionEntityNoJson]
    Definition Classes
    ProcessVersionEntityFactory
  30. val processesTable: TableQuery[ProcessEntity]
    Definition Classes
    ProcessEntityFactory
  31. lazy val profile: JdbcProfile
    Attributes
    protected
    Definition Classes
    Repository
  32. def run[R]: (DB[R]) ⇒ Future[R]
    Definition Classes
    BasicRepositoryRepository
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. val tagsTable: TableQuery[TagsEntity]
    Definition Classes
    TagsEntityFactory
  35. implicit def versionIdMapping: slick.jdbc.JdbcProfile.API.BaseColumnType[VersionId]
    Definition Classes
    BaseEntityFactory
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from CommentActions

Inherited from EspTables

Inherited from AttachmentEntityFactory

Inherited from TagsEntityFactory

Inherited from EnvironmentsEntityFactory

Inherited from CommentEntityFactory

Inherited from ProcessEntityFactory

Inherited from BaseEntityFactory

Inherited from BasicRepository

Inherited from Repository[Future]

Inherited from LazyLogging

Inherited from ProcessActivityRepository

Inherited from AnyRef

Inherited from Any

Ungrouped