gnieh.sohva

CookieSession

trait CookieSession[Result[_]] extends CouchDB[Result] with Session[Result]

An instance of a Couch session that allows the user to login and send request identified with the login credentials. This performs a cookie based authentication against the couchdb server. The couchdb client instance retrieved for this session will send request authenticated by the user that logged in in this session.

Linear Supertypes
Session[Result], CouchDB[Result], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CookieSession
  2. Session
  3. CouchDB
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def _all_dbs: Result[List[String]]

    Returns the names of all databases in this couch instance.

    Returns the names of all databases in this couch instance.

    Definition Classes
    CouchDB
  2. abstract def _config(section: String, key: String): Result[Option[String]]

    Returns the configuration value Returns None if the value does not exist

    Returns the configuration value Returns None if the value does not exist

    Definition Classes
    CouchDB
  3. abstract def _config(section: String): Result[Map[String, String]]

    Returns the configuration section identified by its name (an empty map is returned if the section does not exist)

    Returns the configuration section identified by its name (an empty map is returned if the section does not exist)

    Definition Classes
    CouchDB
  4. abstract def _config: Result[Configuration]

    Returns the configuration object for this CouchDB instance

    Returns the configuration object for this CouchDB instance

    Definition Classes
    CouchDB
  5. abstract def _uuid: Result[String]

    Returns one UUID

    Returns one UUID

    Definition Classes
    CouchDB
  6. abstract def _uuids(count: Int = 1): Result[List[String]]

    Returns the requested number of UUIDS (by default 1).

    Returns the requested number of UUIDS (by default 1).

    Definition Classes
    CouchDB
  7. abstract def contains(dbName: String): Result[Boolean]

    Indicates whether this couchdb instance contains the given database

    Indicates whether this couchdb instance contains the given database

    Definition Classes
    CouchDB
  8. abstract def currentUser: Result[Option[UserInfo]]

    Returns the user associated to the current session, if any

    Returns the user associated to the current session, if any

    Definition Classes
    CookieSessionSession
  9. abstract def database(name: String, credit: Int = 0, strategy: Strategy = BarneyStinsonStrategy): Database[Result]

    Returns the database on the given couch instance.

    Returns the database on the given couch instance.

    Definition Classes
    CouchDB
  10. abstract def deleteConfigValue(section: String, key: String): Result[Boolean]

    Deletes the given configuration key inthe specified section

    Deletes the given configuration key inthe specified section

    Definition Classes
    CouchDB
  11. abstract def hasRole(role: String): Result[Boolean]

    Indicates whether the current session gives the given role to the user

    Indicates whether the current session gives the given role to the user

    Definition Classes
    Session
  12. abstract val host: String

    The couchdb instance host name.

    The couchdb instance host name.

    Definition Classes
    CouchDB
  13. abstract def info: Result[CouchInfo]

    Returns the couchdb instance information

    Returns the couchdb instance information

    Definition Classes
    CouchDB
  14. abstract def isAuthenticated: Result[Boolean]

    Indicates whether the current session is authenticated with the couch server

    Indicates whether the current session is authenticated with the couch server

    Definition Classes
    Session
  15. abstract def isServerAdmin: Result[Boolean]

    Indicates whether the current session is a server admin session

    Indicates whether the current session is a server admin session

    Definition Classes
    Session
  16. abstract def login(name: String, password: String): Result[Boolean]

    Performs a login and returns true if login succeeded.

    Performs a login and returns true if login succeeded. from now on, if login succeeded the couch instance is identified and all requests will be done with the given credentials. This performs a cookie authentication.

  17. abstract def logout: Result[Boolean]

    Logs the session out

  18. abstract val port: Int

    The couchdb instance port.

    The couchdb instance port.

    Definition Classes
    CouchDB
  19. abstract def replicator(name: String = "_replicator", credit: Int = 0, strategy: Strategy = BarneyStinsonStrategy): Replicator[Result]

    Returns the replicator database

    Returns the replicator database

    Definition Classes
    CouchDB
  20. abstract def saveConfigValue(section: String, key: String, value: String): Result[Boolean]

    Saves the given key/value association in the specified section The section and/or the key is created if it does not exist

    Saves the given key/value association in the specified section The section and/or the key is created if it does not exist

    Definition Classes
    CouchDB
  21. abstract val serializer: JsonSerializer

    The Json (de)serializer

    The Json (de)serializer

    Definition Classes
    CouchDB
  22. abstract def userContext: Result[UserCtx]

    Returns the current user context

    Returns the current user context

    Definition Classes
    Session
  23. abstract val users: Users[Result]

    Exposes the interface for managing couchdb users.

    Exposes the interface for managing couchdb users.

    Definition Classes
    CouchDB
  24. abstract val version: String

    The couchdb instance version.

    The couchdb instance version.

    Definition Classes
    CouchDB

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

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  18. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Session[Result]

Inherited from CouchDB[Result]

Inherited from AnyRef

Inherited from Any

Ungrouped