001package org.hl7.fhir.convertors.loaders.loaderR4;
002
003import org.hl7.fhir.r4.model.Resource;
004
005public interface ILoaderKnowledgeProviderR4 {
006  /**
007   * get the path for references to this resource.
008   *
009   * @param resource
010   * @return null if not tracking paths
011   */
012  String getResourcePath(Resource resource);
013}