Class

pl.touk.nussknacker.ui.process.repository

DbWriteProcessRepository

Related Doc: package repository

Permalink

abstract class DbWriteProcessRepository[F[_]] extends LazyLogging with ProcessRepository[F] with CommentActions

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DbWriteProcessRepository
  2. CommentActions
  3. ProcessRepository
  4. EspTables
  5. AttachmentEntityFactory
  6. TagsEntityFactory
  7. ProcessDeploymentInfoEntityFactory
  8. EnvironmentsEntityFactory
  9. ProcessVersionEntityFactory
  10. CommentEntityFactory
  11. ProcessEntityFactory
  12. Repository
  13. LazyLogging
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DbWriteProcessRepository(dbConfig: DbConfig, modelVersion: Map[ProcessingType, Int])

    Permalink

Type Members

  1. class AttachmentEntity extends slick.jdbc.JdbcProfile.API.Table[AttachmentEntityData]

    Permalink
    Definition Classes
    AttachmentEntityFactory
  2. abstract class BaseProcessVersionEntity extends slick.jdbc.JdbcProfile.API.Table[ProcessVersionEntityData]

    Permalink
    Definition Classes
    ProcessVersionEntityFactory
  3. class CommentEntity extends slick.jdbc.JdbcProfile.API.Table[CommentEntityData]

    Permalink
    Definition Classes
    CommentEntityFactory
  4. class EnvironmentsEntity extends slick.jdbc.JdbcProfile.API.Table[EnvironmentsEntityData]

    Permalink
    Definition Classes
    EnvironmentsEntityFactory
  5. class ProcessDeploymentInfoEntity extends slick.jdbc.JdbcProfile.API.Table[DeployedProcessVersionEntityData]

    Permalink
  6. class ProcessEntity extends slick.jdbc.JdbcProfile.API.Table[ProcessEntityData]

    Permalink
    Definition Classes
    ProcessEntityFactory
  7. class ProcessVersionEntity extends BaseProcessVersionEntity

    Permalink
    Definition Classes
    ProcessVersionEntityFactory
  8. class ProcessVersionEntityNoJson extends BaseProcessVersionEntity

    Permalink
    Definition Classes
    ProcessVersionEntityFactory
  9. class TagsEntity extends slick.jdbc.JdbcProfile.API.Table[TagsEntityData]

    Permalink
    Definition Classes
    TagsEntityFactory

Abstract Value Members

  1. abstract def run[R]: (DB[R]) ⇒ F[R]

    Permalink
    Definition Classes
    Repository

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. lazy val api: API

    Permalink
    Attributes
    protected
    Definition Classes
    Repository
  5. def archive(processId: ProcessId, isArchived: Boolean): F[XError[Unit]]

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. val attachmentsTable: TableQuery[AttachmentEntity]

    Permalink
    Definition Classes
    AttachmentEntityFactory
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. val commentsTable: TableQuery[CommentEntity]

    Permalink
    Definition Classes
    CommentEntityFactory
  10. val dbConfig: DbConfig

    Permalink
    Definition Classes
    DbWriteProcessRepositoryRepository
  11. def deleteProcess(processId: ProcessId): F[XError[Unit]]

    Permalink
  12. val deployedProcessesTable: TableQuery[ProcessDeploymentInfoEntity]

    Permalink
  13. implicit def deploymentMapper: JdbcType[DeploymentAction] with BaseTypedType[DeploymentAction]

    Permalink
  14. val environmentsTable: TableQuery[EnvironmentsEntity]

    Permalink
    Definition Classes
    EnvironmentsEntityFactory
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. def latestProcessVersions(processId: ProcessId)(implicit fetchShape: ProcessShapeFetchStrategy[_]): slick.jdbc.JdbcProfile.API.Query[BaseProcessVersionEntity, ProcessVersionEntityData, Seq]

    Permalink
    Attributes
    protected
    Definition Classes
    ProcessRepository
  22. def latestProcessVersionsNoJson(processName: ProcessName): slick.jdbc.JdbcProfile.API.Query[BaseProcessVersionEntity, ProcessVersionEntityData, Seq]

    Permalink
    Attributes
    protected
    Definition Classes
    ProcessRepository
  23. lazy val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    LazyLogging
  24. val modelVersion: Map[ProcessingType, Int]

    Permalink
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. def newCommentAction(processId: ProcessId, processVersionId: Long, comment: String)(implicit ec: ExecutionContext, loggedUser: LoggedUser): DB[Option[Long]]

    Permalink
    Definition Classes
    CommentActions
  27. def nextIdAction[T <: JdbcProfile](implicit jdbcProfile: T): slick.jdbc.JdbcProfile.API.DBIO[Long]

    Permalink
    Definition Classes
    CommentActions
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. def now: LocalDateTime

    Permalink
    Attributes
    protected
  31. def processTableFilteredByUser(implicit loggedUser: LoggedUser): slick.jdbc.JdbcProfile.API.Query[ProcessEntity, ProcessEntityData, Seq]

    Permalink
    Attributes
    protected
    Definition Classes
    ProcessRepository
  32. implicit def processTypeMapper: JdbcType[ProcessType] with BaseTypedType[ProcessType]

    Permalink
    Definition Classes
    ProcessEntityFactory
  33. val processVersionsTable: slick.jdbc.JdbcProfile.API.TableQuery[ProcessVersionEntity]

    Permalink
    Definition Classes
    ProcessVersionEntityFactory
  34. val processVersionsTableNoJson: slick.jdbc.JdbcProfile.API.TableQuery[ProcessVersionEntityNoJson]

    Permalink
    Definition Classes
    ProcessVersionEntityFactory
  35. def processVersionsTableQuery(implicit fetchShape: ProcessShapeFetchStrategy[_]): slick.jdbc.JdbcProfile.API.TableQuery[BaseProcessVersionEntity]

    Permalink
    Attributes
    protected
    Definition Classes
    ProcessRepository
  36. val processesTable: TableQuery[ProcessEntity]

    Permalink
    Definition Classes
    ProcessEntityFactory
  37. lazy val profile: JdbcProfile

    Permalink
    Attributes
    protected
    Definition Classes
    Repository
  38. def renameProcess(processId: ProcessId, newName: String): F[XError[Unit]]

    Permalink
  39. def saveNewProcess(processName: ProcessName, category: String, processDeploymentData: ProcessDeploymentData, processingType: ProcessingType, isSubprocess: Boolean)(implicit loggedUser: LoggedUser): F[XError[Option[ProcessVersionEntityData]]]

    Permalink
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  41. val tagsTable: TableQuery[TagsEntity]

    Permalink
    Definition Classes
    TagsEntityFactory
  42. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  43. def updateCategory(processId: ProcessId, category: String)(implicit loggedUser: LoggedUser): F[XError[Unit]]

    Permalink
  44. def updateProcess(updateProcessAction: UpdateProcessAction)(implicit loggedUser: LoggedUser): F[XError[Option[ProcessVersionEntityData]]]

    Permalink
  45. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CommentActions

Inherited from ProcessRepository[F]

Inherited from EspTables

Inherited from AttachmentEntityFactory

Inherited from TagsEntityFactory

Inherited from EnvironmentsEntityFactory

Inherited from CommentEntityFactory

Inherited from ProcessEntityFactory

Inherited from Repository[F]

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped