commonMain.cccev.s2.unit.domain.DataUnitFinder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cccev-unit-domain-jvm Show documentation
Show all versions of cccev-unit-domain-jvm Show documentation
Kotlin implementation of Core Criterion and Core Evidence Vocabulary
The newest version!
package cccev.s2.unit.domain
import cccev.s2.unit.domain.model.DataUnit
interface DataUnitFinder {
suspend fun getOrNull(id: DataUnitId): DataUnit?
suspend fun getOrNullByIdentifier(id: DataUnitIdentifier): DataUnit?
suspend fun get(id: DataUnitId): DataUnit
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy