add FinishedCompression
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpAdapter.java
index 62adc9e..e230574 100644 (file)
@@ -6,7 +6,7 @@ package net.pterodactylus.util.fcp;
 /**
  * Adapter for {@link FcpListener}.
  * 
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
  * @version $Id$
  */
 public class FcpAdapter implements FcpListener {
@@ -96,6 +96,78 @@ public class FcpAdapter implements FcpListener {
        }
 
        /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedTestDDAComplete(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.TestDDAComplete)
+        */
+       public void receivedTestDDAComplete(FcpConnection fcpConnection, TestDDAComplete testDDAComplete) {
+               /* empty. */
+       }
+
+       /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedPersistentPut(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.PersistentPut)
+        */
+       public void receivedPersistentPut(FcpConnection fcpConnection, PersistentPut persistentPut) {
+               /* empty. */
+       }
+
+       /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedEndListPersistentRequests(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.EndListPersistentRequests)
+        */
+       public void receivedEndListPersistentRequests(FcpConnection fcpConnection, EndListPersistentRequests endListPersistentRequests) {
+               /* empty. */
+       }
+
+       /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedURIGenerated(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.URIGenerated)
+        */
+       public void receivedURIGenerated(FcpConnection fcpConnection, URIGenerated uriGenerated) {
+               /* empty. */
+       }
+
+       /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedAllData(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.AllData)
+        */
+       public void receivedAllData(FcpConnection fcpConnection, AllData allData) {
+               /* empty. */
+       }
+
+       /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedSimpleProgress(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.SimpleProgress)
+        */
+       public void receivedSimpleProgress(FcpConnection fcpConnection, SimpleProgress simpleProgress) {
+               /* empty. */
+       }
+
+       /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedStartedCompression(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.StartedCompression)
+        */
+       public void receivedStartedCompression(FcpConnection fcpConnection, StartedCompression startedCompression) {
+               /* empty. */
+       }
+
+       /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receviedFinishedCompression(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.FinishedCompression)
+        */
+       public void receviedFinishedCompression(FcpConnection fcpConnection, FinishedCompression finishedCompression) {
+               /* empty. */
+       }
+
+       /**
+        * @see net.pterodactylus.util.fcp.FcpListener#receivedProtocolError(net.pterodactylus.util.fcp.FcpConnection,
+        *      net.pterodactylus.util.fcp.ProtocolError)
+        */
+       public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError) {
+               /* empty. */
+       }
+
+       /**
         * @see net.pterodactylus.util.fcp.FcpListener#receivedMessage(net.pterodactylus.util.fcp.FcpConnection,
         *      net.pterodactylus.util.fcp.FcpMessage)
         */