com.firefly.utils.io.ContextResource Maven / Gradle / Ivy
package com.firefly.utils.io;
public interface ContextResource extends Resource {
/**
* Return the path within the enclosing 'context'.
* This is typically path relative to a context-specific root directory,
* e.g. a ServletContext root or a PortletContext root.
*/
String getPathWithinContext();
}