implement node addition and removal events
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpAdapter.java
index 59cfae5..9b858cf 100644 (file)
@@ -200,6 +200,62 @@ public class FcpAdapter implements FcpListener {
        /**
         * {@inheritDoc}
         */
+       public void receivedPersistentPutDir(FcpConnection fcpConnection, PersistentPutDir persistentPutDir) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void receivedPersistentRequestRemoved(FcpConnection fcpConnection, PersistentRequestRemoved persistentRequestRemoved) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void receivedSubscribedUSKUpdate(FcpConnection fcpConnection, SubscribedUSKUpdate subscribedUSKUpdate) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void receivedPluginInfo(FcpConnection fcpConnection, PluginInfo pluginInfo) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void receivedFCPPluginReply(FcpConnection fcpConnection, FCPPluginReply fcpPluginReply) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void receivedPersistentRequestModified(FcpConnection fcpConnection, PersistentRequestModified persistentRequestModified) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void receivedPutSuccessful(FcpConnection fcpConnection, PutSuccessful putSuccessful) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void receivedPutFetchable(FcpConnection fcpConnection, PutFetchable putFetchable) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
        public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError) {
                /* empty. */
        }
@@ -211,4 +267,11 @@ public class FcpAdapter implements FcpListener {
                /* empty. */
        }
 
+       /**
+        * {@inheritDoc}
+        */
+       public void connectionClosed(FcpConnection fcpConnection) {
+               /* empty. */
+       }
+
 }