abstract class SignedCookieAuthenticator[F[_], I, V, A] extends Authenticator[F, I, V, AuthenticatedCookie[A, I]]

Source
SignedCookieAuthenticator.scala
Linear Supertypes
Authenticator[F, I, V, AuthenticatedCookie[A, I]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SignedCookieAuthenticator
  2. Authenticator
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def refresh(authenticator: AuthenticatedCookie[A, I]): F[AuthenticatedCookie[A, I]]

    Refresh an authenticator: Primarily used for sliding window expiration

    Refresh an authenticator: Primarily used for sliding window expiration

    Definition Classes
    Authenticator

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. def afterBlock(response: Response[F], authenticator: AuthenticatedCookie[A, I]): OptionT[F, Response[F]]

    Handles the embedding of the authenticator (if necessary) in the response, and any other actions that should happen after a request related to authenticators

    Handles the embedding of the authenticator (if necessary) in the response, and any other actions that should happen after a request related to authenticators

    Definition Classes
    SignedCookieAuthenticatorAuthenticator
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. def create(body: I): F[AuthenticatedCookie[A, I]]

    Create an authenticator from an identifier.

    Create an authenticator from an identifier.

    Definition Classes
    SignedCookieAuthenticatorAuthenticator
  8. def discard(authenticator: AuthenticatedCookie[A, I]): F[AuthenticatedCookie[A, I]]

    Delete an authenticator from a backing store, or invalidate it.

    Delete an authenticator from a backing store, or invalidate it.

    Definition Classes
    SignedCookieAuthenticatorAuthenticator
  9. def embed(response: Response[F], authenticator: AuthenticatedCookie[A, I]): Response[F]

    Embed an authenticator directly into a response.

    Embed an authenticator directly into a response. Particularly useful for adding an authenticator into unauthenticated actions

    Definition Classes
    SignedCookieAuthenticatorAuthenticator
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. val expiry: FiniteDuration
  13. def extractAndValidate(request: Request[F]): OptionT[F, SecuredRequest[F, V, AuthenticatedCookie[A, I]]]

    Return a secured request from a request, that carries our authenticator

    Return a secured request from a request, that carries our authenticator

    Definition Classes
    Authenticator
  14. def extractRawOption(request: Request[F]): Option[String]

    Attempt to retrieve the raw representation of an A This is primarily useful when attempting to combine AuthenticatorService, to be able to evaluate an endpoint with more than one token type.

    Attempt to retrieve the raw representation of an A This is primarily useful when attempting to combine AuthenticatorService, to be able to evaluate an endpoint with more than one token type. or simply just to prod whether the request is malformed.

    Definition Classes
    SignedCookieAuthenticatorAuthenticator
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. val idStore: IdentityStore[F, I, V]
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. val maxIdle: Option[FiniteDuration]
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def parseRaw(raw: String, request: Request[F]): OptionT[F, SecuredRequest[F, V, AuthenticatedCookie[A, I]]]

    Parse the raw representation from extractRawOption

    Parse the raw representation from extractRawOption

    Definition Classes
    SignedCookieAuthenticatorAuthenticator
  25. def renew(authenticator: AuthenticatedCookie[A, I]): F[AuthenticatedCookie[A, I]]

    Renew an authenticator: Reset it's expiry and whatnot.

    Renew an authenticator: Reset it's expiry and whatnot.

    Definition Classes
    SignedCookieAuthenticatorAuthenticator
  26. val settings: TSecCookieSettings
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. val tokenStore: BackingStore[F, UUID, AuthenticatedCookie[A, I]]
  30. def update(authenticator: AuthenticatedCookie[A, I]): F[AuthenticatedCookie[A, I]]

    Update the altered authenticator

    Update the altered authenticator

    Definition Classes
    SignedCookieAuthenticatorAuthenticator
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Authenticator[F, I, V, AuthenticatedCookie[A, I]]

Inherited from AnyRef

Inherited from Any

Ungrouped