001/*-
002 * #%L
003 * HAPI FHIR JPA Server
004 * %%
005 * Copyright (C) 2014 - 2024 Smile CDR, Inc.
006 * %%
007 * Licensed under the Apache License, Version 2.0 (the "License");
008 * you may not use this file except in compliance with the License.
009 * You may obtain a copy of the License at
010 *
011 *      http://www.apache.org/licenses/LICENSE-2.0
012 *
013 * Unless required by applicable law or agreed to in writing, software
014 * distributed under the License is distributed on an "AS IS" BASIS,
015 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
016 * See the License for the specific language governing permissions and
017 * limitations under the License.
018 * #L%
019 */
020package ca.uhn.fhir.jpa.term.loinc;
021
022import ca.uhn.fhir.jpa.entity.TermConcept;
023import org.hl7.fhir.r4.model.ConceptMap;
024import org.hl7.fhir.r4.model.ValueSet;
025
026import java.util.List;
027import java.util.Map;
028import java.util.Properties;
029
030public class LoincTop2000LabResultsSiHandler extends BaseLoincTop2000LabResultsHandler {
031
032        public static final String TOP_2000_SI_VS_ID = "top-2000-lab-observations-si";
033        public static final String TOP_2000_SI_VS_URI = "http://loinc.org/vs/top-2000-lab-observations-si";
034        public static final String TOP_2000_SI_VS_NAME = "Top 2000 Lab Results SI";
035
036        public LoincTop2000LabResultsSiHandler(
037                        Map<String, TermConcept> theCode2concept,
038                        List<ValueSet> theValueSets,
039                        List<ConceptMap> theConceptMaps,
040                        Properties theUploadProperties,
041                        String theCopyrightStatement) {
042                super(
043                                theCode2concept,
044                                theValueSets,
045                                TOP_2000_SI_VS_ID,
046                                TOP_2000_SI_VS_URI,
047                                TOP_2000_SI_VS_NAME,
048                                theConceptMaps,
049                                theUploadProperties,
050                                theCopyrightStatement);
051        }
052}