summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/vcards/VCardStorage.java')
-rw-r--r--src/com/isode/stroke/vcards/VCardStorage.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/isode/stroke/vcards/VCardStorage.java b/src/com/isode/stroke/vcards/VCardStorage.java
index 9021599..cb732ea 100644
--- a/src/com/isode/stroke/vcards/VCardStorage.java
+++ b/src/com/isode/stroke/vcards/VCardStorage.java
@@ -8,11 +8,13 @@ import com.isode.stroke.crypto.CryptoProvider;
import com.isode.stroke.elements.VCard;
import com.isode.stroke.jid.JID;
import com.isode.stroke.stringcodecs.Hexify;
+import java.util.Date;
public abstract class VCardStorage {
private CryptoProvider crypto;
public abstract VCard getVCard(JID jid);
+ public abstract Date getVCardWriteTime(JID jid);
public abstract void setVCard(JID jid, VCard vcard);
public VCardStorage(CryptoProvider crypto) {