Merge branch 'master' of git.dolda2000.com:/srv/git/r/jsvc
[jsvc.git] / src / dolda / jsvc / store / File.java
1 package dolda.jsvc.store;
2
3 import dolda.jsvc.*;
4 import java.io.*;
5
6 public interface File {
7     public InputStream read();
8     public OutputStream store();
9     public long mtime();
10     public void remove();
11     public String name();
12 }