Add recipients to posts.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Post.java
index 654b827..21ba42d 100644 (file)
@@ -44,6 +44,9 @@ public class Post {
        /** The Sone this post belongs to. */
        private volatile Sone sone;
 
+       /** The Sone of the recipient. */
+       private volatile Sone recipient;
+
        /** The time of the post (in milliseconds since Jan 1, 1970 UTC). */
        private volatile long time;
 
@@ -140,6 +143,27 @@ public class Post {
        }
 
        /**
+        * Returns the recipient of this post, if any.
+        *
+        * @return The recipient of this post, or {@code null}
+        */
+       public Sone getRecipient() {
+               return recipient;
+       }
+
+       /**
+        * Sets the recipient of this post.
+        *
+        * @param recipient
+        *            The recipient of this post, or {@code null}
+        * @return This post (for method chaining)
+        */
+       public Post setRecipient(Sone recipient) {
+               this.recipient = recipient;
+               return this;
+       }
+
+       /**
         * Returns the time of the post.
         *
         * @return The time of the post (in milliseconds since Jan 1, 1970 UTC)