Password Configuration

@Entity
open class PasswordConfiguration : EquinoxItem

The PasswordConfiguration class is used to represent the configuration used to generate a Password

Author

N7ghtm4r3 - Tecknobit

See also

EquinoxItem

Constructors

Link copied to clipboard
constructor()
Constructor to init the PasswordConfiguration class
constructor(id: String, length: Int, includeNumbers: Boolean, includeUppercaseLetters: Boolean, includeSpecialCharacters: Boolean)
Constructor to init the PasswordConfiguration class

Properties

Link copied to clipboard
Link copied to clipboard
protected val hItem: JsonHelper
Link copied to clipboard
protected val id: String
Link copied to clipboard
private val includeNumbers: Boolean
includeNumbers whether the generated password must include the numbers
Link copied to clipboard
includeSpecialCharacters whether the generated password must include the special characters
Link copied to clipboard
includeUppercaseLetters whether the generated password must include the uppercase letters
Link copied to clipboard
val length: Int
length The length of the password
Link copied to clipboard
open var password: Password
password the password owner of the configuration
Link copied to clipboard
protected val timeFormatter: TimeFormatter

Functions

Link copied to clipboard
open fun getId(): String
Link copied to clipboard
open fun includeNumbers(): Boolean
Method used to get the includeNumbers instance
Link copied to clipboard
Method used to get the includeSpecialCharacters instance
Link copied to clipboard
Method used to get the includeUppercaseLetters instance
Link copied to clipboard
open fun toString(): String