Glider User

@Entity
open class GliderUser : EquinoxUser

The GliderUser class is useful to represent a base Glider's system user

Author

N7ghtm4r3 - Tecknobit

See also

EquinoxItem
EquinoxUser

Constructors

Link copied to clipboard
constructor()
Constructor to init the GliderUser class
constructor(    id: String,     token: String,     name: String,     surname: String,     email: String,     password: String,     language: String,     devices: List<DeviceUserSession>,     passwords: List<Password>)
Constructor to init the GliderUser class

Properties

Link copied to clipboard
devices the devices connected to the current session of the user
Link copied to clipboard
Link copied to clipboard
protected val email: String
Link copied to clipboard
protected val hItem: JsonHelper
Link copied to clipboard
protected val id: String
Link copied to clipboard
protected val language: String
Link copied to clipboard
protected val name: String
Link copied to clipboard
protected val password: String
Link copied to clipboard
passwords the passwords owned by the user
Link copied to clipboard
protected val profilePic: String
Link copied to clipboard
protected val surname: String
Link copied to clipboard
protected val timeFormatter: TimeFormatter
Link copied to clipboard
protected val token: String

Functions

Link copied to clipboard
open fun deviceBelongsToMe(deviceId: String): Boolean
Method used to check whether the specified device belongs to the user
Link copied to clipboard
open fun getCompleteName(): String
Link copied to clipboard
Method used to get the devices instance
Link copied to clipboard
open fun getEmail(): String
Link copied to clipboard
open fun getId(): String
Link copied to clipboard
open fun getInstance(jUser: JSONObject): EquinoxUser
Link copied to clipboard
open fun getLanguage(): String
Link copied to clipboard
open fun getName(): String
Link copied to clipboard
open fun getPassword(): String
Link copied to clipboard
open fun getProfilePic(): String
Link copied to clipboard
open fun getSurname(): String
Link copied to clipboard
open fun getToken(): String
Link copied to clipboard
open fun passwordBelongsToMe(passwordId: String): Boolean
Method used to check whether the specified password belongs to the user
Link copied to clipboard
open fun toString(): String