All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.jahrim.chess.authentication.service.components.data.Token.scala Maven / Gradle / Ivy

There is a newer version: 0.4.3
Show newest version
package io.github.jahrim.chess.authentication.service.components.data

import java.time.Instant
import java.time.temporal.ChronoUnit
import java.util.UUID

/**
 * A permit for accessing sensitive operations in this service.
 *
 * @param id the identifier of this [[Token]].
 */
case class Token(
    id: String = UUID.randomUUID.toString,
    expiration: Instant = Instant.now.plus(30, ChronoUnit.MINUTES)
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy