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

org.cqframework.cql.elm.evaluation.TestLibrarySourceProvider Maven / Gradle / Ivy

package org.cqframework.cql.elm.evaluation;

import java.io.InputStream;
import org.cqframework.cql.cql2elm.LibrarySourceProvider;
import org.hl7.elm.r1.VersionedIdentifier;

public class TestLibrarySourceProvider implements LibrarySourceProvider {
    @Override
    public InputStream getLibrarySource(VersionedIdentifier libraryIdentifier) {
        String libraryFileName = String.format(
                "%s.cql",
                libraryIdentifier
                        .getId()); // , libraryIdentifier.getVersion() != null ? ("-" + libraryIdentifier.getVersion())
        // : "");
        return TestLibrarySourceProvider.class.getResourceAsStream(libraryFileName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy