blended.updater.config.UuidPropertyProvider.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blended.updater.config Show documentation
Show all versions of blended.updater.config Show documentation
Configurations for Updater and Launcher
package blended.updater.config
import java.util.UUID
class UuidPropertyProvider(key: String) extends PropertyProvider {
override def provide(key: String): Option[String] =
if (this.key == key) Option(UUID.randomUUID().toString())
else None
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy