01: /**
02: *
03: */package ru.emdev.EmForge.email.velocity.resourceloaders;
04:
05: import java.io.InputStream;
06:
07: /**
08: * Base interface for all custom resource loaders
09: * @author alasarenko
10: */
11: public interface ResourceLoader {
12:
13: /** get inputStream of the template from resource */
14: public abstract InputStream getInputStreamFromResource(
15: String i_resourceName);
16: }
|