class CasClient extends Logger
The CAS client.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CasClient
- Logger
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new CasClient(settings: CasSettings)
- settings
The CAS settings.
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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val logger: Logger
- Definition Classes
- Logger
- 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()
- lazy val protocol: CasProtocol
The CAS protocol.
- lazy val redirectURL: String
The redirect URL.
The redirect URL.
Based on org.jasig.cas.client.util.CommonUtils, which causes a compilation error when pulled in.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def validateServiceTicket(ticket: String)(implicit ec: ExecutionContext): Future[AttributePrincipal]
Validates the service ticket returned by the CAS server.
Validates the service ticket returned by the CAS server.
- ticket
The ticket returned from the CAS server.
- ec
The current ExecutionContext.
- returns
The attribute principal.
- lazy val validator: TicketValidator
The CAS validator.
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withSettings(f: (CasSettings) => CasSettings): CasClient
Gets a client initialized with a new settings object.
Gets a client initialized with a new settings object.
- f
A function which gets the settings passed and returns different settings.
- returns
An instance of the client initialized with new settings.