Packages

c

blended.security.login.api

AbstractTokenStore

abstract class AbstractTokenStore extends TokenStore

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

Instance Constructors

  1. new AbstractTokenStore(mgr: BlendedPermissionManager, tokenHandler: TokenHandler)

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

    Definition Classes
    TokenStore
  2. abstract def listTokens(): Seq[Token]
    Definition Classes
    TokenStore
  3. abstract def removeAllTokens(): Unit
    Definition Classes
    TokenStore
  4. 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

    Definition Classes
    TokenStore
  5. 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.

    Definition Classes
    TokenStore
  6. abstract def verifyToken(token: String): Try[Token]
    Definition Classes
    TokenStore

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. def newToken(subj: Subject, ttl: Option[FiniteDuration] = None)(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

    Definition Classes
    AbstractTokenStoreTokenStore
    Annotations
    @throws( ... )
  14. def nextId(): String
    Attributes
    protected
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def publicKey(): PublicKey
    Definition Classes
    AbstractTokenStoreTokenStore
  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from TokenStore

Inherited from AnyRef

Inherited from Any

Ungrouped