add ListPersistentRequests and WatchGlobal command
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpListener.java
index dde8c3c..928cdc9 100644 (file)
@@ -88,7 +88,7 @@ public interface FcpListener extends EventListener {
         * @param peerNote
         *            The “PeerNote” message
         */
-       public void receviedPeerNote(FcpConnection fcpConnection, PeerNote peerNote);
+       public void receivedPeerNote(FcpConnection fcpConnection, PeerNote peerNote);
 
        /**
         * Notifies a listener that an “EndListPeerNotes” message was received.
@@ -108,7 +108,7 @@ public interface FcpListener extends EventListener {
         * @param peerRemoved
         *            The “PeerRemoved” message
         */
-       public void receviedPeerRemoved(FcpConnection fcpConnection, PeerRemoved peerRemoved);
+       public void receivedPeerRemoved(FcpConnection fcpConnection, PeerRemoved peerRemoved);
 
        /**
         * Notifies a listener that a “NodeData” message was received.
@@ -121,6 +121,46 @@ public interface FcpListener extends EventListener {
        public void receivedNodeData(FcpConnection fcpConnection, NodeData nodeData);
 
        /**
+        * Notifies a listener that a “TestDDAReply” message was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param testDDAReply
+        *            The “TestDDAReply” message
+        */
+       public void receivedTestDDAReply(FcpConnection fcpConnection, TestDDAReply testDDAReply);
+
+       /**
+        * Notifies a listener that a “TestDDAComplete” was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param testDDAComplete
+        *            The “TestDDAComplete” message
+        */
+       public void receivedTestDDAComplete(FcpConnection fcpConnection, TestDDAComplete testDDAComplete);
+
+       /**
+        * Notifies a listener that a “PersistentPut” was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param persistentPut
+        *            The “PersistentPut” message
+        */
+       public void receivedPersistentPut(FcpConnection fcpConnection, PersistentPut persistentPut);
+
+       /**
+        * Notifies a listener that a “ProtocolError” was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param protocolError
+        *            The “ProtocolError” message
+        */
+       public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError);
+
+       /**
         * 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!