com.mle.play

auth

package auth

Visibility
  1. Public
  2. All

Type Members

  1. sealed trait AuthFailure extends AnyRef

  2. case class BasicCredentials(username: String, password: String) extends Product with Serializable

  3. class RememberMe extends Log

  4. case class Token(user: String, series: Long, token: Long) extends Product with Serializable

  5. trait TokenLogging extends TokenStore with Log

  6. trait TokenStore extends AnyRef

  7. case class UnAuthToken(user: String, series: Long, token: Long) extends Product with Serializable

Value Members

  1. object Auth

  2. object CookieMissing extends AuthFailure with Product with Serializable

  3. object InvalidCookie extends AuthFailure with Product with Serializable

  4. object InvalidCredentials extends AuthFailure with Product with Serializable

  5. object RememberMe extends CookieBaker[UnAuthToken] with Log

    Adapted from https://github.com/wsargent/play20-rememberme

  6. object Token extends Serializable

  7. object UnAuthToken extends Serializable

Ungrouped