Packages

trait TokenStore extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TokenStore
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getToken(id: String): Option[Token]

    Retrieve a token from the store with its identifier.

    Retrieve a token from the store with its identifier.

    id

    the identifier to retrieve the token

    returns

    the token if it exists or None, wrapped in a Future

  2. abstract def listTokens(): Seq[Token]
  3. abstract def newToken(subj: Subject, ttl: Option[FiniteDuration])(implicit eCtxt: ExecutionContext): Try[Token]

    Create a token with a given user name / password.

    Create a token with a given user name / password. The implementation will use the standard container LoginContext to perform a login() using the credentials provided. Afterwards, we use a blended.security.BlendedPermissionManager to map the blended.security.boot.GroupPrincipals contained in the subject to permissions. Finally, the token will be created for the user with the retrieved permissions.

    ttl

    The validatity for the new token

    returns

    Success(token) if the token can be created, Failure(_) otherwise, wrapped in a Future

  4. abstract def publicKey(): PublicKey
  5. abstract def removeAllTokens(): Unit
  6. abstract def removeToken(id: String): Option[Token]

    Remove a token from the store with its identifier.

    Remove a token from the store with its identifier.

    id

    The identifier identifying the token to be removed

    returns

    the token that has been removed, if it was present or None, wrapped in a Future

  7. abstract def storeToken(token: Token): Try[Token]

    Store a given token in the store.

    Store a given token in the store. If the token already exists, an exception is thrown.

    token

    The token to be stored

    returns

    Success(token) if the store was successful, Failure(_) otherwise, wrapped in a Future.

  8. abstract def verifyToken(token: String): Try[Token]

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
    @native() @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
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  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
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  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
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped