Add missing class

This commit is contained in:
James Agnew 2019-10-18 15:51:20 -04:00
parent 50af4bfb19
commit c455a46160
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package ca.uhn.fhir.jpa.dao;
import org.hl7.fhir.instance.model.api.IBaseResource;
/**
* Standard resource DAO
* @param <T> The resource type
*/
public class JpaResourceDao<T extends IBaseResource> extends BaseHapiFhirResourceDao<T> {
// nothing yet
}