001package org.hl7.fhir.r5.context;
002
003import org.hl7.fhir.utilities.MarkedToMoveToAdjunctPackage;
004
005@MarkedToMoveToAdjunctPackage
006public interface IWorkerContextManager {
007
008  interface IPackageLoadingTracker {
009    public void packageLoaded(String pid, String version);
010  }
011
012  interface ICanonicalResourceLocator {
013    void findResource(Object caller, String url); // if it can be found, put it in the context
014  }
015
016}