p
auth
package auth
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- class Authentication extends UnauthorizedHandler with I18nSupport
- case class ChangePasswordData (newPassword: ClearTextPassword) extends Product with Serializable
- class DefaultUnauthorizedHandler extends UnauthorizedHandler
- case class ForgotPasswordData (userId: UserId) extends Product with Serializable
-
trait
FormFormatterLike
extends AnyRef
Play Framework form field mapping formatters.
Play Framework form field mapping formatters. To use, either mix in the
forms.FormatterLike
trait or import theforms.Formatters
object. - case class LoginData (userId: UserId, password: ClearTextPassword) extends Product with Serializable
-
case class
RequestWithUser
[A](user: Option[User], request: Request[A]) extends WrappedRequest[A] with Product with Serializable
A request that adds the User for the current call
- case class SignUpData (email: EMail, userId: UserId, clearTextPassword: ClearTextPassword, firstName: String, lastName: String) extends Product with Serializable
- trait UnauthorizedHandler extends AnyRef
Value Members
- object AuthForms extends FormFormatterLike
- object Authentication
- object FormFormatters extends FormFormatterLike
-
object
PasswordHasher
Implementation of a password hasher based on BCrypt.
Implementation of a password hasher based on BCrypt.
- See also