services.datasource

ContentTDG

object ContentTDG extends TableDataGateway

Linear Supertypes
TableDataGateway, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ContentTDG
  2. TableDataGateway
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val Delete: String

  7. val Insert: String

  8. val SelectAll: String

    These values are used by the below finder functions, but should be overriden in the implementing class to actually, you know, do something.

    These values are used by the below finder functions, but should be overriden in the implementing class to actually, you know, do something.

    Definition Classes
    ContentTDGTableDataGateway
  9. val SelectById: String

  10. val SelectByLanguage: String

  11. val SelectBySlug: String

  12. def SelectByTag(tags: String, language: String): String

  13. val SelectByTitle: String

  14. val SelectLanguage: String

  15. val SelectOne: String

    Definition Classes
    ContentTDGTableDataGateway
  16. val SelectOneName: String

  17. val SelectSlug: String

  18. val SelectUntagged: String

  19. val SetPrimaryTag: String

  20. val Update: String

  21. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  22. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. def delete(id: Array[Byte]): Future[Boolean]

    id
    returns

  24. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. def find(id: Array[Byte]): Future[IndexedSeq[RowData]]

    Find a single entry by ID.

    Find a single entry by ID.

    id

    the 128-bit UUID, as a byte array, to search for.

    returns

    an optional RowData object containing the results

  28. def findById(id: Array[Byte]): Future[Option[RowData]]

    Find a single entry by ID.

    Find a single entry by ID.

    id

    the 128-bit UUID, as a byte array, to search for.

    returns

    an optional RowData object containing the results

    Definition Classes
    TableDataGateway
  29. def findByLanguage(language: String): Future[ResultSet]

  30. def findByName(title: String): Future[Option[RowData]]

    Find a single Content Entity by title.

    Find a single Content Entity by title.

    title

    the content title to search by

    returns

    the future optional RowData returned from the database

  31. def findBySlug(slug: String): Future[IndexedSeq[RowData]]

  32. def findByTags(tags: String, language: String): Future[ResultSet]

  33. def findByTitle(title: String): Future[IndexedSeq[RowData]]

  34. def findLanguage(id: Array[Byte]): Future[IndexedSeq[RowData]]

  35. def findSlug(id: Array[Byte]): Future[IndexedSeq[RowData]]

  36. def findUntagged(language: String): Future[ResultSet]

  37. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  39. def insert(id: Array[Byte], translated_id: Array[Byte], title: Array[Byte], description: Array[Byte], contentType: String): Future[Option[Long]]

    Inserts a new content.

  40. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  41. def list: Future[ResultSet]

    Find all UserEntitys.

    Find all UserEntitys.

    Definition Classes
    TableDataGateway
  42. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  43. final def notify(): Unit

    Definition Classes
    AnyRef
  44. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  45. def pool: Connection

    The most important definition for any TDG object.

    The most important definition for any TDG object. Use the pool to send database queries and prepared statements.

    returns

    the connection pool to be used for making database queries

    Definition Classes
    TableDataGateway
  46. def setPrimaryTag(id: Array[Byte], primaryTag: String): Future[Boolean]

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

    Definition Classes
    AnyRef
  48. def toString(): String

    Definition Classes
    AnyRef → Any
  49. def update(id: Array[Byte], version: Long, title: Array[Byte], description: Array[Byte]): Future[Option[Long]]

    Save a Content row.

    Save a Content row.

    returns

    id of the saved/new content.

  50. def update(id: Array[Byte], version: Long, fields: Map[String, Any]): Unit

  51. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from TableDataGateway

Inherited from AnyRef

Inherited from Any

Ungrouped