trait TokenStore extends AnyRef
- Alphabetic
- By Inheritance
- TokenStore
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
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
- abstract def listTokens(): Seq[Token]
-
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
- abstract def publicKey(): PublicKey
- abstract def removeAllTokens(): Unit
-
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
-
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.
- abstract def verifyToken(token: String): Try[Token]
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )