trait AccessTokenService extends AnyRef

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

Value Members

  1. def deleteAccessToken(userName: String, accessTokenId: Int)(implicit s: (blockingApi)#Session): Unit
  2. def generateAccessToken(userName: String, note: String)(implicit s: (blockingApi)#Session): (Int, String)

    returns

    (TokenId, Token)

  3. def getAccessTokens(userName: String)(implicit s: (blockingApi)#Session): List[AccessToken]
  4. def getAccountByAccessToken(token: String)(implicit s: (blockingApi)#Session): Option[Account]
  5. def hasAccessToken(userName: String)(implicit s: (blockingApi)#Session): Boolean
  6. def makeAccessTokenString: String
  7. def tokenToHash(token: String): String