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