add ModifyPeer command
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpListener.java
index 23ea9ff..aa8147b 100644 (file)
@@ -21,11 +21,6 @@ package net.pterodactylus.util.fcp;
 
 import java.util.EventListener;
 
-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;
 
 /**
  * Interface for objects that want to be notified on certain FCP events.
@@ -87,6 +82,26 @@ public interface FcpListener extends EventListener {
        public void receivedEndListPeers(FcpConnection fcpConnection, EndListPeers endListPeers);
 
        /**
+        * Notifies a listener that a “PeerNote” message was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param peerNote
+        *            The “PeerNote” message
+        */
+       public void receviedPeerNote(FcpConnection fcpConnection, PeerNote peerNote);
+
+       /**
+        * Notifies a listener that an “EndListPeerNotes” message was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param endListPeerNotes
+        *            The “EndListPeerNotes” message
+        */
+       public void receivedEndListPeerNotes(FcpConnection fcpConnection, EndListPeerNotes endListPeerNotes);
+
+       /**
         * Notifies a listener that a message has been received. This method is only
         * called if {@link FcpConnection#handleMessage(FcpMessage)} does not
         * recognize the message. Should that ever happen, please file a bug report!