Mercurial Hosting > nabble
view src/cachingfilter/CachedPage.java @ 66:3fbe9cb2e325 default tip
security
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 18 Sep 2024 03:51:47 -0600 |
parents | 7ecd1a4ef557 |
children |
line wrap: on
line source
package cachingfilter; import java.io.File; import java.io.IOException; interface CachedPage { public String name(); public boolean exists(); public File lastFile(); public File newFile() throws IOException; public void deleteNewFile(); public boolean delete(); }