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

de.gematik.refv.ValidationModuleFactory Maven / Gradle / Ivy

/*
Copyright (c) 2022-2024 gematik GmbH

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.
*/
package de.gematik.refv;

import ca.uhn.fhir.context.FhirContext;
import de.gematik.refv.commons.exceptions.ValidationModuleInitializationException;
import de.gematik.refv.commons.validation.BaseValidationModule;
import de.gematik.refv.commons.validation.GenericValidator;
import de.gematik.refv.commons.validation.IntegratedValidationResourceProvider;
import de.gematik.refv.plugins.validation.PluginValidationResourceProvider;
import de.gematik.refv.commons.validation.ValidationModule;
import de.gematik.refv.commons.validation.IntegratedValidationModule;
import de.gematik.refv.valmodule.erpta7.ErpTa7ValidationModule;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import lombok.extern.slf4j.Slf4j;


@NoArgsConstructor
@Slf4j
public class ValidationModuleFactory {

    public ValidationModule createValidationModuleFromPlugin(@NonNull Plugin plugin) throws ValidationModuleInitializationException {
        FhirContext fhirContext = FhirContext.forR4();
        GenericValidator engine = new GenericValidator(fhirContext);
        ValidationModule result = new BaseValidationModule(
                new PluginValidationResourceProvider(plugin::getResource, fhirContext),
                engine
        );
        result.initialize();
        return result;
    }

    public ValidationModule createValidationModule(@NonNull SupportedValidationModule module) throws ValidationModuleInitializationException {
        ValidationModule result;
        if(module == SupportedValidationModule.ERPTA7) {
            result = new ErpTa7ValidationModule(
                    new IntegratedValidationResourceProvider("erpta7")
            );
        }
        else {
            GenericValidator engine = new GenericValidator(FhirContext.forR4());
            result = new IntegratedValidationModule(
                    module.toString(),
                    engine
            );
        }
        result.initialize();
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy