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

euszjaje.jira4s-core_3.2.4.0.source-code.RequestId.scala Maven / Gradle / Ivy

There is a newer version: 2.4.1
Show newest version
package io.gitlab.mateuszjaje.jiraclient

import java.util.UUID

case class RequestId(id: String, kind: String) {
  override lazy val toString = s"$id($kind)"
}

object RequestId {
  def newOne(kind: String) = new RequestId(UUID.randomUUID().toString, kind)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy