com.atomizesoftware.spin.data.repositories

CargoRepository

trait CargoRepository extends AnyRef

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

Abstract Value Members

  1. abstract def allCargoTypes(implicit s: scala.slick.jdbc.JdbcBackend.Session): List[CargoType]

  2. abstract def allCargos(implicit s: scala.slick.jdbc.JdbcBackend.Session): List[Cargo]

  3. abstract def cargoTotalCountForFilters(filter: String, filterOr: String, search: String, references: String)(implicit s: scala.slick.jdbc.JdbcBackend.Session): Long

  4. abstract def cargoTypeTotalCountForFilters(filter: String, filterOr: String, search: String, references: String)(implicit s: scala.slick.jdbc.JdbcBackend.Session): Long

  5. abstract def cargoTypeWithId(id: Long)(implicit s: scala.slick.jdbc.JdbcBackend.Session): Option[CargoType]

  6. abstract def cargoTypesForFilters(limit: Int, offset: Int, references: String, filter: String, filterOr: String, search: String, sortBy: String, timeZoneId: String)(implicit s: scala.slick.jdbc.JdbcBackend.Session): List[CargoType]

  7. abstract def cargoTypesForSync(syncTimestamp: Long)(implicit s: scala.slick.jdbc.JdbcBackend.Session): List[CargoType]

  8. abstract def cargoWithId(id: Long, filter: String, filterOr: String, references: String)(implicit s: scala.slick.jdbc.JdbcBackend.Session): Option[Cargo]

  9. abstract def cargoWithId(id: Long, filter: String, filterOr: String)(implicit s: scala.slick.jdbc.JdbcBackend.Session): Option[Cargo]

  10. abstract def cargoWithId(id: Long)(implicit s: scala.slick.jdbc.JdbcBackend.Session): Option[Cargo]

  11. abstract def cargosAndTotalCountForFilters(references: String, filter: String, filterOr: String, search: String, sortBy: String, timeZoneId: String, limit: Int, offset: Int)(implicit s: scala.slick.jdbc.JdbcBackend.Session): (List[Cargo], Long)

  12. abstract def cargosForFilters(references: String, filter: String, filterOr: String, search: String, sortBy: String, timeZoneId: String, limit: Int, offset: Int)(implicit s: scala.slick.jdbc.JdbcBackend.Session): List[Cargo]

  13. abstract def cargosForSync(syncTimestamp: Long, references: String)(implicit s: scala.slick.jdbc.JdbcBackend.Session): List[Cargo]

  14. abstract def cargosInLocationWithId(locationId: Long, include: String = "")(implicit session: scala.slick.jdbc.JdbcBackend.Session): List[Cargo]

  15. abstract def cargosInsideOf(containerId: Long, depth: Int = 1)(implicit session: scala.slick.jdbc.JdbcBackend.Session): List[Cargo]

  16. abstract def cargosWithParentOfId(parentId: Long)(implicit session: scala.slick.jdbc.JdbcBackend.Session): List[Cargo]

  17. abstract def deleteCargo(id: Long)(implicit s: scala.slick.jdbc.JdbcBackend.Session, currentUser: AuthenticatedUser): Boolean

  18. abstract def deleteCargoType(id: Long)(implicit s: scala.slick.jdbc.JdbcBackend.Session, currentUser: AuthenticatedUser): Boolean

  19. abstract def insertCargo(cargo: Cargo)(implicit s: scala.slick.jdbc.JdbcBackend.Session, currentUser: AuthenticatedUser): Try[Cargo]

  20. abstract def insertCargoType(cargoType: CargoType)(implicit s: scala.slick.jdbc.JdbcBackend.Session, currentUser: AuthenticatedUser): CargoType

  21. abstract def locationIdOfCargoWithId(cargoId: Long)(implicit s: scala.slick.jdbc.JdbcBackend.Session): Option[Long]

  22. abstract def locationIdOfCargosWithIds(cargoIds: List[Long])(implicit s: scala.slick.jdbc.JdbcBackend.Session): List[Option[Long]]

  23. abstract def updateCargo(cargo: Cargo)(implicit s: scala.slick.jdbc.JdbcBackend.Session, currentUser: AuthenticatedUser): Boolean

  24. abstract def updateCargoType(cargoType: CargoType)(implicit s: scala.slick.jdbc.JdbcBackend.Session, currentUser: AuthenticatedUser): Boolean

  25. abstract def updateCargos(cargos: List[Cargo])(implicit s: scala.slick.jdbc.JdbcBackend.Session, currentUser: AuthenticatedUser): Boolean

Concrete 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 clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  16. def toString(): String

    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped