Add @FunctionalInterface to factory.

This commit is contained in:
Luke deGruchy 2024-09-17 15:19:50 -04:00
parent 8e0e9b09fe
commit 59ed858ba4
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ import org.opencds.cqf.fhir.api.Repository;
/**
* Factory interface to return a {@link Repository} from a {@link RequestDetails}
*/
@FunctionalInterface
public interface RepositoryFactoryForRepositoryInterface {
Repository create(RequestDetails theRequestDetails);
}