services.datasource

MenuItemTDG

object MenuItemTDG extends TableDataGateway

Linear Supertypes
TableDataGateway, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MenuItemTDG
  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 DeleteCascade: String

  8. val Insert: String

  9. 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
    TableDataGateway
  10. val SelectAllParents: String

  11. val SelectByParentId: String

  12. val SelectLargestPosition: String

  13. val SelectLargestPositionByParent: String

  14. val SelectOne: String

    Definition Classes
    MenuItemTDGTableDataGateway
  15. val SetPosition: String

  16. val Update: String

  17. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  18. def clone(): AnyRef

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

    Delete a MenuItem from the database.

    Delete a MenuItem from the database.

    id

    the id of the MenuItem to delete

    returns

    a boolean indicating whether the operation was successful

  20. def deleteCascade(id: Array[Byte]): Future[Boolean]

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def findAllParents(language: String): Future[IndexedSeq[RowData]]

    Select all the MenuItems with no parents.

    Select all the MenuItems with no parents.

    returns

    a future indexed sequence of RowData

  25. def findById(id: Array[Byte], language: String): Future[Option[RowData]]

  26. 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
  27. def findByParentId(parentId: Array[Byte], language: String): Future[IndexedSeq[RowData]]

    Select MenuItems by parent id.

    Select MenuItems by parent id.

    returns

    a future indexed sequence of RowData

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

    Definition Classes
    AnyRef → Any
  29. def getLargestPosition(parentId: Array[Byte]): Future[Option[Int]]

  30. def getLargestPosition: Future[Option[Int]]

  31. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  32. def insert(id: Array[Byte], version: Long, parentId: Option[String], tagLineId: Option[String], contentId: Option[String], language: String, position: Int, title: String, description: String, longDescription: String, published: Int): Future[Option[Long]]

    Inserts a new MenuItem.

    Inserts a new MenuItem.

    returns

    the version as a future option long

  33. final def isInstanceOf[T0]: Boolean

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

    Find all UserEntitys.

    Find all UserEntitys.

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

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

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

    Definition Classes
    AnyRef
  38. 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
  39. def setPosition(id: Array[Byte], position: Int): Future[Boolean]

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

    Definition Classes
    AnyRef
  41. def toString(): String

    Definition Classes
    AnyRef → Any
  42. def update(id: Array[Byte], version: Long, parentId: Option[String], tagLineId: Option[String], contentId: Option[String], language: String, position: Int, title: String, description: String, longDescription: String, published: Int): Future[Option[Long]]

    Updates an existing MenuItem.

    Updates an existing MenuItem.

    returns

    the version as a future option long

  43. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from TableDataGateway

Inherited from AnyRef

Inherited from Any

Ungrouped