
001package org.hl7.fhir.r4.utils.validation; 002 003import java.io.IOException; 004 005import org.hl7.fhir.exceptions.FHIRException; 006import org.hl7.fhir.r4.elementmodel.Element; 007import org.hl7.fhir.utilities.MarkedToMoveToAdjunctPackage; 008 009@MarkedToMoveToAdjunctPackage 010public interface IValidatorResourceFetcher { 011 Element fetch(Object appContext, String url) throws FHIRException, IOException; 012 013 boolean resolveURL(Object appContext, String path, String url) throws IOException, FHIRException; 014}