case class AccessToken(token: String, refreshToken: Option[String], scope: Option[String], lifeSeconds: Option[Long], createdAt: Date, params: Map[String, String] = Map.empty[String, String]) extends Product with Serializable
Access token
- token
Access token is used to authentication.
- refreshToken
Refresh token is used to re-issue access token.
- scope
Inform the client of the scope of the access token issued.
- lifeSeconds
Life of the access token since its creation. In seconds.
- createdAt
Access token is created date.
- params
Additional parameters to add information/restriction on given Access token.
- Source
- DataHandler.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AccessToken
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new AccessToken(token: String, refreshToken: Option[String], scope: Option[String], lifeSeconds: Option[Long], createdAt: Date, params: Map[String, String] = Map.empty[String, String])
- token
Access token is used to authentication.
- refreshToken
Refresh token is used to re-issue access token.
- scope
Inform the client of the scope of the access token issued.
- lifeSeconds
Life of the access token since its creation. In seconds.
- createdAt
Access token is created date.
- params
Additional parameters to add information/restriction on given Access token.
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]) @IntrinsicCandidate() @native()
- val createdAt: Date
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val expiresIn: Option[Long]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def isExpired: Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val lifeSeconds: Option[Long]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- val params: Map[String, String]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val refreshToken: Option[String]
- val scope: Option[String]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val token: String
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)