package at.gv.egiz.eid.authhandler.modules.sigverify.moasig.api.data; import java.io.InputStream; import java.util.Map; /** * Inject additional XML schemes into MOA-Sig * * @author tlenz * */ public interface ISchemaRessourceProvider { /** * Get a Map of additional XML schemes that should be injected into MOA-Sig * * @return A Set of {@link Entry} consist of Name of the Scheme and XML scheme as {@link InputStream} */ public Map getSchemas(); }