Class

org.ada.server.dataaccess.mongo

MongoJsonCrudRepo

Related Doc: package mongo

Permalink

class MongoJsonCrudRepo extends MongoAsyncReadonlyRepo[JsObject, BSONObjectID] with JsonCrudRepo

Linear Supertypes
AsyncCrudRepo[JsObject, BSONObjectID], AsyncRepo[JsObject, BSONObjectID], MongoAsyncReadonlyRepo[JsObject, BSONObjectID], AsyncReadonlyRepo[JsObject, BSONObjectID], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MongoJsonCrudRepo
  2. AsyncCrudRepo
  3. AsyncRepo
  4. MongoAsyncReadonlyRepo
  5. AsyncReadonlyRepo
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MongoJsonCrudRepo(collectionName: String, fieldNamesAndTypes: Seq[(String, FieldTypeSpec)], mongoAutoCreateIndexForProjection: Boolean)

    Permalink
    Annotations
    @Inject()

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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def collection: Future[JSONCollection]

    Permalink
    Attributes
    protected
    Definition Classes
    MongoAsyncReadonlyRepo
  7. def count(criteria: Seq[Criterion[Any]]): Future[Int]

    Permalink
    Definition Classes
    MongoAsyncReadonlyRepo → AsyncReadonlyRepo
  8. def delete(id: BSONObjectID): Future[Unit]

    Permalink
    Definition Classes
    MongoJsonCrudRepo → AsyncCrudRepo
  9. def delete(ids: Traversable[BSONObjectID]): Future[Unit]

    Permalink
    Definition Classes
    AsyncCrudRepo
  10. def deleteAll: Future[Unit]

    Permalink
    Definition Classes
    MongoJsonCrudRepo → AsyncCrudRepo
  11. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def exists(id: BSONObjectID): Future[Boolean]

    Permalink
    Definition Classes
    MongoAsyncReadonlyRepo → AsyncReadonlyRepo
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def find(criteria: Seq[Criterion[Any]], sort: Seq[Sort], projection: Traversable[String], limit: Option[Int], skip: Option[Int]): Future[Traversable[JsObject]]

    Permalink
    Definition Classes
    MongoAsyncReadonlyRepo → AsyncReadonlyRepo
  16. def findAsCursor(criteria: Seq[Criterion[Any]], sort: Seq[Sort], projection: Traversable[String], limit: Option[Int], skip: Option[Int]): Future[AkkaStreamCursor[JsObject]]

    Permalink
    Attributes
    protected
    Definition Classes
    MongoAsyncReadonlyRepo
  17. def findAsStream(criteria: Seq[Criterion[Any]], sort: Seq[Sort], projection: Traversable[String], limit: Option[Int], skip: Option[Int])(implicit materializer: Materializer): Future[Source[JsObject, _]]

    Permalink
    Definition Classes
    MongoAsyncReadonlyRepo → AsyncReadonlyRepo
  18. def flushOps: Future[Unit]

    Permalink
    Definition Classes
    MongoJsonCrudRepo → AsyncRepo
  19. def get(id: BSONObjectID): Future[Option[JsObject]]

    Permalink
    Definition Classes
    MongoAsyncReadonlyRepo → AsyncReadonlyRepo
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def handleExceptions[A]: PartialFunction[Throwable, A]

    Permalink
    Attributes
    protected
    Definition Classes
    MongoAsyncReadonlyRepo
  22. def handleResult(result: WriteResult): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    MongoAsyncReadonlyRepo
  23. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  24. val identityName: String

    Permalink
    Definition Classes
    MongoAsyncReadonlyRepo
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. val logger: Logger.type

    Permalink
    Attributes
    protected
    Definition Classes
    MongoAsyncReadonlyRepo
  27. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  30. var reactiveMongoApi: ReactiveMongoApi

    Permalink
    Definition Classes
    MongoAsyncReadonlyRepo
  31. def save(entities: Traversable[JsObject]): Future[Traversable[BSONObjectID]]

    Permalink
    Definition Classes
    MongoJsonCrudRepo → AsyncRepo
  32. def save(entity: JsObject): Future[BSONObjectID]

    Permalink
    Definition Classes
    MongoJsonCrudRepo → AsyncRepo
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. def toMongoCondition[T, V](criterion: Criterion[T]): JsObject

    Permalink
    Attributes
    protected
    Definition Classes
    MongoAsyncReadonlyRepo
  35. def toMongoCriteria(criteria: Seq[Criterion[Any]]): JsObject

    Permalink
    Attributes
    protected
    Definition Classes
    MongoAsyncReadonlyRepo
  36. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  37. def update(entity: JsObject): Future[BSONObjectID]

    Permalink
    Definition Classes
    MongoJsonCrudRepo → AsyncCrudRepo
  38. def update(entities: Traversable[JsObject]): Future[Traversable[BSONObjectID]]

    Permalink
    Definition Classes
    AsyncCrudRepo
  39. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. def withCollection[T](fun: (JSONCollection) ⇒ Future[T]): Future[T]

    Permalink
    Attributes
    protected
    Definition Classes
    MongoAsyncReadonlyRepo

Inherited from AsyncCrudRepo[JsObject, BSONObjectID]

Inherited from AsyncRepo[JsObject, BSONObjectID]

Inherited from MongoAsyncReadonlyRepo[JsObject, BSONObjectID]

Inherited from AsyncReadonlyRepo[JsObject, BSONObjectID]

Inherited from AnyRef

Inherited from Any

Ungrouped