unfiltered.oauth2

Authorized

trait Authorized extends AuthorizationProvider with AuthorizationEndpoints with Formatting with ValidationMessages with Flows with Plan

A composition of components which respond to authorization requests. This trait provides default implementations of Oauth Flows. To override these, simply override a target Flows callback methods

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Authorized
  2. Plan
  3. InittedFilter
  4. Filter
  5. Flows
  6. Refreshing
  7. ClientCredentialsFlow
  8. PasswordFlow
  9. TokenFlow
  10. AuthCodeFlow
  11. ValidationMessages
  12. Formatting
  13. AuthorizationEndpoints
  14. AuthorizationProvider
  15. AnyRef
  16. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val AuthorizePath: String

    Definition Classes
    AuthorizationEndpoints
  2. abstract val TokenPath: String

    Definition Classes
    AuthorizationEndpoints
  3. abstract val auth: AuthorizationServer

    Definition Classes
    AuthorizationProvider
  4. abstract def requiredMsg(what: String): String

    Definition Classes
    ValidationMessages

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def Json(kvs: Iterable[(String, String)]): ResponseFunction[Any]

    Definition Classes
    Formatting
  7. def accessResponder(accessToken: String, tokenType: Option[String], expiresIn: Option[Int], refreshToken: Option[String], scope: Seq[String], extras: Iterable[(String, String)]): ResponseFunction[Any]

    returns

    a function which builds a response for an accept token request

    Attributes
    protected
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def config: FilterConfig

    Definition Classes
    InittedFilter
  11. def destroy(): Unit

    Definition Classes
    InittedFilter → Filter
  12. def doFilter(request: ServletRequest, response: ServletResponse, chain: FilterChain): Unit

    Definition Classes
    Plan → Filter
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def errorResponder(error: String, desc: String, euri: Option[String], state: Option[String]): ResponseFunction[Any]

    returns

    a function which builds a response for error responses

    Attributes
    protected
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  19. def init(config: FilterConfig): Unit

    Definition Classes
    InittedFilter → Filter
  20. def intent: PartialFunction[HttpRequest[HttpServletRequest], ResponseFunction[HttpServletResponse]]

    Definition Classes
    Authorized → Plan
  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. def onAuthCode(req: HttpRequest[Any], responseType: Seq[String], clientId: String, redirectUri: String, scope: Seq[String], state: Option[String]): ResponseFunction[Any]

    Definition Classes
    AuthorizedAuthCodeFlow
  26. def onClientCredentials(clientId: String, clientSecret: String, scope: Seq[String]): ResponseFunction[Any]

    Definition Classes
    AuthorizedClientCredentialsFlow
  27. def onGrantAuthCode(code: String, redirectUri: String, clientId: String, clientSecret: String): ResponseFunction[Any]

    Definition Classes
    AuthorizedAuthCodeFlow
  28. def onPassword(userName: String, password: String, clientId: String, clientSecret: String, scope: Seq[String]): ResponseFunction[Any]

    Definition Classes
    AuthorizedPasswordFlow
  29. def onRefresh(refreshToken: String, clientId: String, clientSecret: String, scope: Seq[String]): ResponseFunction[Any]

    Definition Classes
    AuthorizedRefreshing
  30. def onToken(req: HttpRequest[Any], responseType: Seq[String], clientId: String, redirectUri: String, scope: Seq[String], state: Option[String]): ResponseFunction[Any]

    Definition Classes
    AuthorizedTokenFlow
  31. def onUnsupportedAuth(req: HttpRequest[Any], responseType: Seq[String], clientId: String, redirectUri: String, scope: Seq[String], state: Option[String]): ResponseFunction[Any]

    Attributes
    protected
  32. def qstr(kvs: Iterable[(String, String)]): String

    Definition Classes
    Formatting
  33. implicit def s2qs(uri: String): AnyRef { def ?(qs: String): String }

    Syntactic sugar for appending query strings to paths

  34. def spaceDecoder(raw: String): Seq[String]

    Attributes
    protected
  35. def spaceEncoder(scopes: Seq[String]): String

    Attributes
    protected
  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  37. def toString(): String

    Definition Classes
    AnyRef → Any
  38. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Plan

Inherited from InittedFilter

Inherited from Filter

Inherited from Flows

Inherited from Refreshing

Inherited from ClientCredentialsFlow

Inherited from PasswordFlow

Inherited from TokenFlow

Inherited from AuthCodeFlow

Inherited from ValidationMessages

Inherited from Formatting

Inherited from AuthorizationEndpoints

Inherited from AuthorizationProvider

Inherited from AnyRef

Inherited from Any

Ungrouped