1 package org.columba.addressbook.folder; 19 20 import org.columba.addressbook.model.IContactModel; 21 import org.columba.api.exception.StoreException; 22 23 29 public interface DataStorage { 30 31 IContactModel load(String uid) throws StoreException; 32 void save(String uid, IContactModel contact) throws StoreException; 33 void modify(String uid, IContactModel contact) throws StoreException; 34 void remove(String uid) throws StoreException; 35 } 36 | Popular Tags |