final class Authentication extends Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Authentication
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Authentication(userOpt: Option[String], passwordOpt: Option[String], httpHeaders: Seq[(String, String)], optional: Boolean, realmOpt: Option[String], httpsOnly: Boolean, passOnRedirect: Boolean)
- new Authentication(userOpt: Option[String], passwordOpt: Option[String], httpHeaders: Seq[(String, String)], optional: Boolean, realmOpt: Option[String], httpsOnly: Boolean, passOnRedirect: Boolean, byNameHttpHeaders: Seq[() ⇒ Seq[(String, String)]])
-
new
Authentication(user: String, passwordOpt: Option[String], httpHeaders: Seq[(String, String)], optional: Boolean, realmOpt: Option[String], httpsOnly: Boolean, passOnRedirect: Boolean)
- Annotations
- @deprecated
- Deprecated
(Since version 2.1.25) Use the override accepting an Option[String] as user
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def allHttpHeaders: Seq[(String, String)]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- val byNameHttpHeaders: Seq[() ⇒ Seq[(String, String)]]
-
def
canEqual(obj: Any): Boolean
- Definition Classes
- Authentication → Equals
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(obj: Any): Boolean
- Definition Classes
- Authentication → Equals → AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- Authentication → AnyRef → Any
- val httpHeaders: Seq[(String, String)]
- val httpsOnly: Boolean
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val optional: Boolean
- val passOnRedirect: Boolean
- val passwordOpt: Option[String]
-
def
productArity: Int
- Definition Classes
- Authentication → Product
-
def
productElement(n: Int): Any
- Definition Classes
- Authentication → Product
-
def
productIterator: Iterator[Any]
- Definition Classes
- Product
-
def
productPrefix: String
- Definition Classes
- Authentication → Product
- val realmOpt: Option[String]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- Authentication → AnyRef → Any
- def userOnly: Boolean
- val userOpt: Option[String]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def withByNameHttpHeaders(byNameHttpHeaders: Seq[() ⇒ Seq[(String, String)]]): Authentication
- def withHttpHeaders(httpHeaders: Seq[(String, String)]): Authentication
- def withHttpsOnly(httpsOnly: Boolean): Authentication
- def withOptional(optional: Boolean): Authentication
- def withPassOnRedirect(passOnRedirect: Boolean): Authentication
- def withPassword(password: String): Authentication
- def withPasswordOpt(passwordOpt: Option[String]): Authentication
- def withRealm(realm: String): Authentication
- def withRealmOpt(realmOpt: Option[String]): Authentication
- def withUser(newUser: String): Authentication
- def withUserOpt(userOpt: Option[String]): Authentication
Deprecated Value Members
-
def
user: String
- Annotations
- @deprecated
- Deprecated
(Since version 2.1.25) Use userOpt instead