Skip to content

Instantly share code, notes, and snippets.

@sirech
Created June 16, 2019 16:12
Show Gist options
  • Save sirech/850aa5db88161abd887b37c7a32598a1 to your computer and use it in GitHub Desktop.
Save sirech/850aa5db88161abd887b37c7a32598a1 to your computer and use it in GitHub Desktop.
data class UserId(private val value: String) {
companion object {
@JvmStatic
@JsonCreator
fun create(value: String) = UserId(value.toLowerCase())
}
@JsonValue
override fun toString() = value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment