ObjectInRepository
data class ObjectInRepository(repositoryId: String, val key: String) : Comparable<ObjectInRepository>
A composed key used in the key-value stores to persist model data. The key is composed of a key and an optional repositoryId. The repositoryId is set when an entry is scoped to the repository.
This class is directly used with the Ignite cache (see IgniteStoreClient). Therefore, the order of fields must be consistent with the configuration of JdbcType
in ignite.xml.