package combiner
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
sealed
trait
AuthenticationTransformer[-I, +O] extends AnyRef
Transforms authentication information to a new type, for use in combiners.
Transforms authentication information to a new type, for use in combiners. If transformers are available for
A,B, andC, the combined authentication can use simple typeDinstead of something like(Option[A], Option[B], Option[C]).Implementation note: This is a new
traitinstead of a type alias to prevent accidental implicit use. It's sealed to control howpartialis defined to make future refactorings easier (maybe it should be a complete lifted function, etc.).
Value Members
- object AuthenticationTransformer