All Downloads are FREE. Search and download functionalities are using the official Maven repository.

leap.lang.servlet.ServletResource Maven / Gradle / Ivy

The newest version!
package leap.lang.servlet;

import javax.servlet.ServletContext;

import leap.lang.resource.ContextResource;

public interface ServletResource extends ContextResource {

	/**
	 * Return the ServletContext for this resource.
	 */
	ServletContext getServletContext();

	/**
	 * This implementation creates a {@link ServletResource}, applying the given path
	 * relative to the path of the underlying file of this resource descriptor.
	 */
	ServletResource createRelative(String relativePath);

	ServletResource[] scan(String subPattern);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy