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