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