Packages

c

com.datasolvr.services.core

VersionedEntityRepository

class VersionedEntityRepository[T <: VersionedEntityContainer, TTable <: VersionedEntityTable[T]] extends DatabaseRepository[T, TTable] with VersionedEntityRepositoryLike[T]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VersionedEntityRepository
  2. VersionedEntityRepositoryLike
  3. DatabaseRepository
  4. SlickImplicits
  5. Logging
  6. LoggingLike
  7. RealTimeAware
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new VersionedEntityRepository(db: ServiceDatabase, table: slick.jdbc.JdbcProfile.API.TableQuery[TTable], environment: String, entityName: String, filter: Option[(String, (slick.jdbc.JdbcProfile.API.TableQuery[TTable]) => slick.jdbc.JdbcProfile.API.Query[TTable, T, Seq])] = None)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def cache[TValue](keys: Any*)(action: => TValue): TValue
    Definition Classes
    DatabaseRepository
  6. def cacheMultiple[TValue](keys: List[List[Any]], getKey: (TValue) => List[Any])(action: => (List[List[Any]]) => Seq[TValue]): List[TValue]
    Definition Classes
    DatabaseRepository
  7. def clear(): Int
    Definition Classes
    DatabaseRepository
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  9. def debug(message: => String, context: => String = getClass.getSimpleName): Unit
    Definition Classes
    LoggingLike
  10. def debugScope[T](message: (Int) => String, context: => String = getClass.getSimpleName)(action: => T): T
    Definition Classes
    LoggingLike
  11. def delete(id: String, version: UUID)(implicit accessCheck: RepositoryAccessCheck[T] = RepositoryAccessCheck(None)): Unit
  12. def dropCache(keys: Any*): AnyVal
    Definition Classes
    DatabaseRepository
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def error(message: => String, context: => String = getClass.getSimpleName): Unit
    Definition Classes
    LoggingLike
  16. def error(e: Throwable): Unit
    Definition Classes
    LoggingLike
  17. def fetchAll(id: String)(implicit accessCheck: RepositoryAccessCheck[T] = RepositoryAccessCheck(None)): List[T]
  18. def fetchAllLatest(includeDeleted: Boolean = false)(implicit accessCheck: RepositoryAccessCheck[T] = RepositoryAccessCheck(None)): List[T]
  19. def fetchAllLatestIncludeDeleted()(implicit accessCheck: RepositoryAccessCheck[T] = RepositoryAccessCheck(None)): List[T]
  20. def fetchLatest(id: String, allowDeleted: Boolean)(implicit accessCheck: RepositoryAccessCheck[T] = RepositoryAccessCheck(None)): T
  21. def fetchLatestOption(id: String, allowDeleted: Boolean)(implicit accessCheck: RepositoryAccessCheck[T] = RepositoryAccessCheck(None)): Option[T]
  22. def fetchSpecific(id: String, version: UUID)(implicit accessCheck: RepositoryAccessCheck[T] = RepositoryAccessCheck(None)): T
  23. def fetchSpecificOption(id: String, version: UUID)(implicit accessCheck: RepositoryAccessCheck[T] = RepositoryAccessCheck(None)): Option[T]
  24. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  25. def handleMessage(timestamp: LocalDateTime, message: => String, level: String, context: => String): Unit
    Definition Classes
    LoggingLoggingLike
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  27. def info(message: => String, context: => String = getClass.getSimpleName): Unit
    Definition Classes
    LoggingLike
  28. def insertOrUpdate(element: T)(implicit accessCheck: RepositoryAccessCheck[T] = RepositoryAccessCheck(None)): Unit
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  33. def store(element: T)(implicit accessCheck: RepositoryAccessCheck[T] = RepositoryAccessCheck(None)): Unit
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. val table: slick.jdbc.JdbcProfile.API.TableQuery[TTable]
    Definition Classes
    DatabaseRepository
  36. implicit def toRichStringRep(rep: slick.jdbc.JdbcProfile.API.Rep[String]): RichStringRep
    Definition Classes
    SlickImplicits
  37. def toString(): String
    Definition Classes
    AnyRef → Any
  38. def utcNowJava: LocalDateTime

    The current UTC date and time.

    The current UTC date and time.

    Definition Classes
    RealTimeAware
  39. def utcTodayJava: LocalDateTime

    The current UTC date.

    The current UTC date.

    Definition Classes
    RealTimeAware
  40. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. def waitFor[R](action: SqlAction[R, slick.jdbc.JdbcProfile.API.NoStream, Nothing], onCompleted: => Unit = () => {}): R
    Definition Classes
    DatabaseRepository
  44. def warn(message: => String, context: => String = getClass.getSimpleName): Unit
    Definition Classes
    LoggingLike

Deprecated Value Members

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

    (Since version 9)

Inherited from DatabaseRepository[T, TTable]

Inherited from SlickImplicits

Inherited from Logging

Inherited from LoggingLike

Inherited from RealTimeAware

Inherited from AnyRef

Inherited from Any

Ungrouped