net.contextfw.web.application.internal.util.ResourceEntry Maven / Gradle / Ivy
package net.contextfw.web.application.internal.util;
import java.io.InputStream;
public abstract class ResourceEntry {
protected String path;
protected ResourceEntry() {
}
protected ResourceEntry(String path) {
this.path = path;
}
public abstract InputStream getInputStream();
public String getPath() {
return path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy