home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / javaws.jar / javax / jnlp / PersistenceService.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  641 b   |  25 lines

  1. package javax.jnlp;
  2.  
  3. import java.io.FileNotFoundException;
  4. import java.io.IOException;
  5. import java.net.MalformedURLException;
  6. import java.net.URL;
  7.  
  8. public interface PersistenceService {
  9.    int CACHED = 0;
  10.    int TEMPORARY = 1;
  11.    int DIRTY = 2;
  12.  
  13.    long create(URL var1, long var2) throws MalformedURLException, IOException;
  14.  
  15.    FileContents get(URL var1) throws MalformedURLException, IOException, FileNotFoundException;
  16.  
  17.    void delete(URL var1) throws MalformedURLException, IOException;
  18.  
  19.    String[] getNames(URL var1) throws MalformedURLException, IOException;
  20.  
  21.    int getTag(URL var1) throws MalformedURLException, IOException;
  22.  
  23.    void setTag(URL var1, int var2) throws MalformedURLException, IOException;
  24. }
  25.