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; 007 008public interface IValidatorResourceFetcher { 009 Element fetch(Object appContext, String url) throws FHIRException, IOException; 010 011 boolean resolveURL(Object appContext, String path, String url) throws IOException, FHIRException; 012}