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

dev.bantu.accounts.api.model.AccountId.kt Maven / Gradle / Ivy

package dev.bantu.accounts.api.model

import com.fasterxml.jackson.annotation.JsonIgnore
import com.fasterxml.jackson.annotation.JsonValue
import java.io.Serializable

data class AccountId(
    @get:JsonValue
    var value: String? = null
) : Serializable {

    companion object {
        const val PREFIX = "acc_"
    }

    @JsonIgnore
    fun isRoot() = value == "root"

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy