Implement “SentFeed” response message.
[jFCPlib.git] / src / net / pterodactylus / fcp / FcpAdapter.java
index ae32e62..a358d4c 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * jSite2 - FcpAdapter.java -
- * Copyright © 2008 David Roden
+ * jFCPlib - FcpAdapter.java - Copyright © 2008 David Roden
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,7 +20,7 @@ package net.pterodactylus.fcp;
 
 /**
  * Adapter for {@link FcpListener}.
- * 
+ *
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  */
 public class FcpAdapter implements FcpListener {
@@ -84,7 +83,7 @@ public class FcpAdapter implements FcpListener {
 
        /**
         * {@inheritDoc}
-        * 
+        *
         * @see FcpListener#receivedNodeData(FcpConnection, NodeData)
         */
        public void receivedNodeData(FcpConnection fcpConnection, NodeData nodeData) {
@@ -93,7 +92,7 @@ public class FcpAdapter implements FcpListener {
 
        /**
         * {@inheritDoc}
-        * 
+        *
         * @see FcpListener#receivedTestDDAReply(FcpConnection, TestDDAReply)
         */
        public void receivedTestDDAReply(FcpConnection fcpConnection, TestDDAReply testDDAReply) {
@@ -278,6 +277,20 @@ public class FcpAdapter implements FcpListener {
        /**
         * {@inheritDoc}
         */
+       public void receivedSentFeed(FcpConnection source, SentFeed sentFeed) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void receivedBookmarkFeed(FcpConnection fcpConnection, ReceivedBookmarkFeed receivedBookmarkFeed) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
        public void receivedMessage(FcpConnection fcpConnection, FcpMessage fcpMessage) {
                /* empty. */
        }