class DbProcessActionRepository extends BasicRepository with EspTables with CommentActions with ProcessActionRepository[DB]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DbProcessActionRepository
  2. ProcessActionRepository
  3. CommentActions
  4. EspTables
  5. AttachmentEntityFactory
  6. TagsEntityFactory
  7. ProcessActionEntityFactory
  8. EnvironmentsEntityFactory
  9. ProcessVersionEntityFactory
  10. CommentEntityFactory
  11. ProcessEntityFactory
  12. BaseEntityFactory
  13. BasicRepository
  14. Repository
  15. AnyRef
  16. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DbProcessActionRepository(dbConfig: DbConfig, buildInfos: ProcessingTypeDataProvider[Map[String, String]])(implicit ec: ExecutionContext)

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. lazy val api: API
    Attributes
    protected
    Definition Classes
    Repository
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val attachmentsTable: TableQuery[AttachmentEntity]
    Definition Classes
    AttachmentEntityFactory
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. val commentsTable: TableQuery[CommentEntity]
    Definition Classes
    CommentEntityFactory
  9. val dbConfig: DbConfig
  10. implicit def deploymentMapper: JdbcType[ProcessActionType] with BaseTypedType[ProcessActionType]
    Definition Classes
    BaseEntityFactory
  11. val environmentsTable: TableQuery[EnvironmentsEntity]
    Definition Classes
    EnvironmentsEntityFactory
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def markProcessAsArchived(processId: ProcessId, processVersion: VersionId)(implicit user: LoggedUser): DB[ProcessActionEntityData]
  18. def markProcessAsCancelled(processId: ProcessId, processVersion: VersionId, deploymentComment: Option[DeploymentComment])(implicit user: LoggedUser): Future[ProcessActionEntityData]
  19. def markProcessAsDeployed(processId: ProcessId, processVersion: VersionId, processingType: ProcessingType, deploymentComment: Option[DeploymentComment])(implicit user: LoggedUser): Future[ProcessActionEntityData]
  20. def markProcessAsUnArchived(processId: ProcessId, processVersion: VersionId)(implicit user: LoggedUser): DB[ProcessActionEntityData]
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def newCommentAction(processId: ProcessId, processVersionId: VersionId, comment: Option[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. val processActionsTable: TableQuery[ProcessActionEntity]
    Definition Classes
    ProcessActionEntityFactory
  27. implicit def processIdMapping: slick.jdbc.JdbcProfile.API.BaseColumnType[ProcessId]
    Definition Classes
    BaseEntityFactory
  28. implicit def processNameMapping: slick.jdbc.JdbcProfile.API.BaseColumnType[ProcessName]
    Definition Classes
    BaseEntityFactory
  29. val processVersionsTable: slick.jdbc.JdbcProfile.API.TableQuery[ProcessVersionEntity]
    Definition Classes
    ProcessVersionEntityFactory
  30. val processVersionsTableNoJson: slick.jdbc.JdbcProfile.API.TableQuery[ProcessVersionEntityNoJson]
    Definition Classes
    ProcessVersionEntityFactory
  31. val processesTable: TableQuery[ProcessEntity]
    Definition Classes
    ProcessEntityFactory
  32. lazy val profile: JdbcProfile
    Attributes
    protected
    Definition Classes
    Repository
  33. def run[R]: (DB[R]) => Future[R]
    Definition Classes
    BasicRepositoryRepository
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. val tagsTable: TableQuery[TagsEntity]
    Definition Classes
    TagsEntityFactory
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. implicit def versionIdMapping: slick.jdbc.JdbcProfile.API.BaseColumnType[VersionId]
    Definition Classes
    BaseEntityFactory
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

Inherited from ProcessActionRepository[DB]

Inherited from CommentActions

Inherited from EspTables

Inherited from TagsEntityFactory

Inherited from CommentEntityFactory

Inherited from ProcessEntityFactory

Inherited from BaseEntityFactory

Inherited from BasicRepository

Inherited from Repository[Future]

Inherited from AnyRef

Inherited from Any

Ungrouped