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