Add a default implementation to new terminology service loader method

This commit is contained in:
James Agnew 2019-07-31 10:07:51 -04:00
parent b956b7552e
commit 3196bc370f
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,8 @@ public interface IHapiTerminologyLoaderSvc {
UploadStatistics loadSnomedCt(List<FileDescriptor> theFiles, RequestDetails theRequestDetails);
UploadStatistics loadCustom(String theSystem, List<FileDescriptor> theFiles, RequestDetails theRequestDetails);
// FIXME: remove the default implementation before 4.0.0
default UploadStatistics loadCustom(String theSystem, List<FileDescriptor> theFiles, RequestDetails theRequestDetails) { return null; };
interface FileDescriptor {