add ListPeer and ListPeers commands and replies
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpAdapter.java
index 9a70d0f..d867b91 100644 (file)
@@ -4,7 +4,10 @@
 package net.pterodactylus.util.fcp;
 
 import net.pterodactylus.util.fcp.message.CloseConnectionDuplicateClientName;
+import net.pterodactylus.util.fcp.message.EndListPeers;
 import net.pterodactylus.util.fcp.message.NodeHello;
+import net.pterodactylus.util.fcp.message.Peer;
+import net.pterodactylus.util.fcp.message.SSKKeypair;
 
 /**
  * Adapter for {@link FcpListener}.
@@ -31,6 +34,30 @@ public class FcpAdapter implements FcpListener {
        }
 
        /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedSSKKeypair(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.message.SSKKeypair)
+        */
+       public void receivedSSKKeypair(FcpConnection fcpConnection, SSKKeypair sskKeypair) {
+               /* empty. */
+       }
+
+       /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedPeer(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.message.Peer)
+        */
+       public void receivedPeer(FcpConnection fcpConnection, Peer peer) {
+               /* empty. */
+       }
+
+       /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedEndListPeers(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.message.EndListPeers)
+        */
+       public void receivedEndListPeers(FcpConnection fcpConnection, EndListPeers endListPeers) {
+               /* empty. */
+       }
+
+       /**
         * @see net.pterodactylus.util.fcp.FcpListener#receivedMessage(net.pterodactylus.util.fcp.FcpConnection,
         *      net.pterodactylus.util.fcp.FcpMessage)
         */