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