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

org.opencds.cqf.cql.engine.retrieve.RetrieveProvider Maven / Gradle / Ivy

Go to download

The engine library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
package org.opencds.cqf.cql.engine.retrieve;

import org.opencds.cqf.cql.engine.runtime.Code;
import org.opencds.cqf.cql.engine.runtime.Interval;

public interface RetrieveProvider {
    Iterable retrieve(String context, String contextPath, Object contextValue, String dataType, String templateId, String codePath,
              Iterable codes, String valueSet, String datePath, String dateLowPath, String dateHighPath,
			  Interval dateRange);
}