com.interface21.web.servlet
Interface LastModified
- All Known Implementing Classes:
- MultiActionController
- public interface LastModified
Support last modified HTTP requests to facilitate content caching.
Same contract as for Servlet API getLastModified() method.
Any resource within our MVC framework can implement this.
|
Method Summary |
long |
getLastModified(javax.servlet.http.HttpServletRequest request)
Same contract as for Servlet.getLastModified
Invoked before request processing. |
getLastModified
public long getLastModified(javax.servlet.http.HttpServletRequest request)
- Same contract as for Servlet.getLastModified
Invoked before request processing.
- Parameters:
request - HTTP request- Returns:
- the time the underlying resource was last modified.
Rod Johnson and Spring contributors 2001-2003.