summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Maudsley <richard.maudsley@isode.com>2014-03-11 11:14:25 (GMT)
committerSwift Review <review@swift.im>2014-05-26 17:16:33 (GMT)
commitdb8568aa6a9bbfa8dca9cdae696e8428a0068d89 (patch)
tree38ab6981542192128711049cb551dc03cf6f97a7 /src/com/isode/stroke/elements/Delay.java
parentcafd510a0efc9df985999ceded57efa1d411de2e (diff)
downloadstroke-db8568aa6a9bbfa8dca9cdae696e8428a0068d89.zip
stroke-db8568aa6a9bbfa8dca9cdae696e8428a0068d89.tar.bz2
Added MAM parsers, serializers and tests.
Change-Id: I4e5368f9ac86446b7ebf976e2cb63d64ebefe7b2
Diffstat (limited to 'src/com/isode/stroke/elements/Delay.java')
-rw-r--r--src/com/isode/stroke/elements/Delay.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/com/isode/stroke/elements/Delay.java b/src/com/isode/stroke/elements/Delay.java
new file mode 100644
index 0000000..9827a82
--- /dev/null
+++ b/src/com/isode/stroke/elements/Delay.java
@@ -0,0 +1,43 @@
+/*
+* Copyright (c) 2014 Kevin Smith and Remko Tronçon
+* All rights reserved.
+*/
+
+/*
+* Copyright (c) 2014, Isode Limited, London, England.
+* All rights reserved.
+*/
+
+package com.isode.stroke.elements;
+
+import java.util.Date;
+import com.isode.stroke.jid.JID;
+
+public class Delay extends Payload {
+ public Delay() {
+ }
+
+ public Delay(Date time, JID from) {
+ time_ = time;
+ from_ = from;
+ }
+
+ public Date getStamp() {
+ return time_;
+ }
+
+ public void setStamp(Date time) {
+ time_ = time;
+ }
+
+ public JID getFrom() {
+ return from_;
+ }
+
+ public void setFrom(JID from) {
+ from_ = from;
+ }
+
+ private Date time_;
+ private JID from_;
+}