All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scalaoauth2.provider.OAuth2ProviderActionBuilders.scala Maven / Gradle / Ivy

The newest version!
package scalaoauth2.provider

import play.api.mvc.{ActionBuilder, AnyContent, BaseController}

trait OAuth2ProviderActionBuilders {

  self: BaseController =>

  def AuthorizedAction[U](
      handler: ProtectedResourceHandler[U]
  ): ActionBuilder[({ type L[A] = AuthInfoRequest[A, U] })#L, AnyContent] = {
    AuthorizedActionFunction(handler)(
      self.defaultExecutionContext
    ) compose Action
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy