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.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AccessToken
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
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[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- val createdAt: Date
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val expiresIn: Option[Long]
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- 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
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- val params: Map[String, String]
- val refreshToken: Option[String]
- val scope: Option[String]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val token: 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( ... )