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

r.entity-provider.1.68.0.source-code.module-info Maven / Gradle / Ivy

/*
 * Copyright © 2015 Integrated Knowledge Management ([email protected])
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
import dev.ikm.tinkar.common.service.CachingService;
import dev.ikm.tinkar.common.service.DefaultDescriptionForNidService;
import dev.ikm.tinkar.common.service.PrimitiveDataService;
import dev.ikm.tinkar.common.service.PublicIdService;
import dev.ikm.tinkar.entity.EntityService;
import dev.ikm.tinkar.entity.StampService;
import dev.ikm.tinkar.provider.entity.DefaultDescriptionForNidServiceFactory ;
import dev.ikm.tinkar.provider.entity.EntityProvider;
import dev.ikm.tinkar.provider.entity.EntityServiceFactory ;
import dev.ikm.tinkar.provider.entity.PublicIdServiceFactory ;
import dev.ikm.tinkar.provider.entity.StampProvider;

@SuppressWarnings("module")
// 7 in HL7 is not a version reference
module dev.ikm.tinkar.provider.entity {
	requires org.slf4j;
	requires transitive dev.ikm.tinkar.component;
	requires transitive dev.ikm.tinkar.common;
	requires transitive dev.ikm.tinkar.entity;
	requires transitive dev.ikm.tinkar.terms;
	requires org.eclipse.collections.api;
	requires org.eclipse.collections;
	requires static transitive com.google.auto.service;

    provides EntityService
            with EntityServiceFactory;
    provides PublicIdService
            with PublicIdServiceFactory;
    provides DefaultDescriptionForNidService
            with DefaultDescriptionForNidServiceFactory;
    provides StampService
            with StampProvider;
    provides CachingService
            with EntityProvider.CacheProvider;

	uses PrimitiveDataService;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy