1 24 30 31 package org.datashare; 32 33 import java.util.Enumeration ; 34 import java.util.Hashtable ; 35 36 43 public interface PersistenceInterface 44 { 45 50 boolean initialize(); 51 52 58 Enumeration 59 searchForUserObjects(String table, String searchString); 60 61 64 void 65 delete(String table, String searchString); 66 67 73 76 String 77 save(String table, Hashtable properties); 78 79 82 String 83 update(String table, String key, Object object); 84 85 88 int findCount(String table, String searchString); 89 90 99 void 100 saveFunctionDataToDisk(String ownerKeyString, SessionInfo si, ChannelInfo ci, String fileExtension, byte[] fileContents, String mimeType); 101 } 102 | Popular Tags |