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