add PutFailed
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpListener.java
index c32eb90..6f02866 100644 (file)
@@ -141,6 +141,16 @@ public interface FcpListener extends EventListener {
        public void receivedTestDDAComplete(FcpConnection fcpConnection, TestDDAComplete testDDAComplete);
 
        /**
+        * Notifies a listener that a “PersistentGet” was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param persistentGet
+        *            The “PersistentGet” message
+        */
+       public void receivedPersistentGet(FcpConnection fcpConnection, PersistentGet persistentGet);
+
+       /**
         * Notifies a listener that a “PersistentPut” was received.
         * 
         * @param fcpConnection
@@ -221,6 +231,56 @@ public interface FcpListener extends EventListener {
        public void receviedFinishedCompression(FcpConnection fcpConnection, FinishedCompression finishedCompression);
 
        /**
+        * Notifies a listener that an “UnknownPeerNoteType” was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param unknownPeerNoteType
+        *            The “UnknownPeerNoteType” message
+        */
+       public void receivedUnknownPeerNoteType(FcpConnection fcpConnection, UnknownPeerNoteType unknownPeerNoteType);
+
+       /**
+        * Notifies a listener that a “UnknownNodeIdentifier” message was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param unknownNodeIdentifier
+        *            The “UnknownNodeIdentifier” message
+        */
+       public void receivedUnknownNodeIdentifier(FcpConnection fcpConnection, UnknownNodeIdentifier unknownNodeIdentifier);
+
+       /**
+        * Notifies a listener that a “ConfigData” message was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param configData
+        *            The “ConfigData” message
+        */
+       public void receivedConfigData(FcpConnection fcpConnection, ConfigData configData);
+
+       /**
+        * Notifies a listener that a “GetFailed” message was recevied.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param getFailed
+        *            The “GetFailed” message
+        */
+       public void receivedGetFailed(FcpConnection fcpConnection, GetFailed getFailed);
+
+       /**
+        * Notifies a listener that a “PutFailed” message was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param putFailed
+        *            The “PutFailed” message
+        */
+       public void receivedPutFailed(FcpConnection fcpConnection, PutFailed putFailed);
+
+       /**
         * Notifies a listener that a “ProtocolError” was received.
         * 
         * @param fcpConnection