Mercurial Hosting > nabble
view src/cachingfilter/CachedPage.java @ 3:1010f557927f
allow setting salt for backup file
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 25 Mar 2019 18:38:18 -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(); }