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

blended.updater.config.UuidPropertyProvider.scala Maven / Gradle / Ivy

There is a newer version: 2.5.0-M10
Show newest version
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