Add and implement Identified interface.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Post.java
index 5269fe4..4860a01 100644 (file)
@@ -28,7 +28,7 @@ import com.google.common.base.Predicate;
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
-public interface Post {
+public interface Post extends Identified {
 
        /** Comparator for posts, sorts descending by time. */
        public static final Comparator<Post> TIME_COMPARATOR = new Comparator<Post>() {
@@ -69,14 +69,6 @@ public interface Post {
        public Sone getSone();
 
        /**
-        * Returns whether this post has a recipient.
-        *
-        * @return {@code true} if this post has a recipient, {@code false}
-        *         otherwise
-        */
-       public boolean hasRecipient();
-
-       /**
         * Returns the ID of the recipient {@link Sone}, or
         * {@link Optional#absent()} if this post does not have a recipient.
         *