eb67768dad1c1f77bd630322bc1042b02ab60786
[jFCPlib.git] / src / net / pterodactylus / fcp / FcpAdapter.java
1 /*
2  * jSite2 - FcpAdapter.java -
3  * Copyright © 2008 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.fcp;
21
22 /**
23  * Adapter for {@link FcpListener}.
24  *
25  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
26  * @version $Id$
27  */
28 public class FcpAdapter implements FcpListener {
29
30         /**
31          * {@inheritDoc}
32          */
33         public void receivedNodeHello(FcpConnection fcpConnection, NodeHello nodeHello) {
34                 /* empty. */
35         }
36
37         /**
38          * {@inheritDoc}
39          */
40         public void receivedCloseConnectionDuplicateClientName(FcpConnection fcpConnection, CloseConnectionDuplicateClientName closeConnectionDuplicateClientName) {
41                 /* empty. */
42         }
43
44         /**
45          * {@inheritDoc}
46          */
47         public void receivedSSKKeypair(FcpConnection fcpConnection, SSKKeypair sskKeypair) {
48                 /* empty. */
49         }
50
51         /**
52          * {@inheritDoc}
53          */
54         public void receivedPeer(FcpConnection fcpConnection, Peer peer) {
55                 /* empty. */
56         }
57
58         /**
59          * {@inheritDoc}
60          */
61         public void receivedEndListPeers(FcpConnection fcpConnection, EndListPeers endListPeers) {
62                 /* empty. */
63         }
64
65         /**
66          * {@inheritDoc}
67          */
68         public void receivedPeerNote(FcpConnection fcpConnection, PeerNote peerNote) {
69                 /* empty. */
70         }
71
72         /**
73          * {@inheritDoc}
74          */
75         public void receivedEndListPeerNotes(FcpConnection fcpConnection, EndListPeerNotes endListPeerNotes) {
76                 /* empty. */
77         }
78
79         /**
80          * {@inheritDoc}
81          */
82         public void receivedPeerRemoved(FcpConnection fcpConnection, PeerRemoved peerRemoved) {
83                 /* empty. */
84         }
85
86         /**
87          * {@inheritDoc}
88          *
89          * @see FcpListener#receivedNodeData(FcpConnection, NodeData)
90          */
91         public void receivedNodeData(FcpConnection fcpConnection, NodeData nodeData) {
92                 /* empty. */
93         }
94
95         /**
96          * {@inheritDoc}
97          *
98          * @see FcpListener#receivedTestDDAReply(FcpConnection, TestDDAReply)
99          */
100         public void receivedTestDDAReply(FcpConnection fcpConnection, TestDDAReply testDDAReply) {
101                 /* empty. */
102         }
103
104         /**
105          * {@inheritDoc}
106          */
107         public void receivedTestDDAComplete(FcpConnection fcpConnection, TestDDAComplete testDDAComplete) {
108                 /* empty. */
109         }
110
111         /**
112          * {@inheritDoc}
113          */
114         public void receivedPersistentGet(FcpConnection fcpConnection, PersistentGet persistentGet) {
115                 /* empty. */
116         }
117
118         /**
119          * {@inheritDoc}
120          */
121         public void receivedPersistentPut(FcpConnection fcpConnection, PersistentPut persistentPut) {
122                 /* empty. */
123         }
124
125         /**
126          * {@inheritDoc}
127          */
128         public void receivedEndListPersistentRequests(FcpConnection fcpConnection, EndListPersistentRequests endListPersistentRequests) {
129                 /* empty. */
130         }
131
132         /**
133          * {@inheritDoc}
134          */
135         public void receivedURIGenerated(FcpConnection fcpConnection, URIGenerated uriGenerated) {
136                 /* empty. */
137         }
138
139         /**
140          * {@inheritDoc}
141          */
142         public void receivedDataFound(FcpConnection fcpConnection, DataFound dataFound) {
143                 /* empty. */
144         }
145
146         /**
147          * {@inheritDoc}
148          */
149         public void receivedAllData(FcpConnection fcpConnection, AllData allData) {
150                 /* empty. */
151         }
152
153         /**
154          * {@inheritDoc}
155          */
156         public void receivedSimpleProgress(FcpConnection fcpConnection, SimpleProgress simpleProgress) {
157                 /* empty. */
158         }
159
160         /**
161          * {@inheritDoc}
162          */
163         public void receivedStartedCompression(FcpConnection fcpConnection, StartedCompression startedCompression) {
164                 /* empty. */
165         }
166
167         /**
168          * {@inheritDoc}
169          */
170         public void receviedFinishedCompression(FcpConnection fcpConnection, FinishedCompression finishedCompression) {
171                 /* empty. */
172         }
173
174         /**
175          * {@inheritDoc}
176          */
177         public void receivedUnknownPeerNoteType(FcpConnection fcpConnection, UnknownPeerNoteType unknownPeerNoteType) {
178                 /* empty. */
179         }
180
181         /**
182          * {@inheritDoc}
183          */
184         public void receivedUnknownNodeIdentifier(FcpConnection fcpConnection, UnknownNodeIdentifier unknownNodeIdentifier) {
185                 /* empty. */
186         }
187
188         /**
189          * {@inheritDoc}
190          */
191         public void receivedConfigData(FcpConnection fcpConnection, ConfigData configData) {
192                 /* empty. */
193         }
194
195         /**
196          * {@inheritDoc}
197          */
198         public void receivedGetFailed(FcpConnection fcpConnection, GetFailed getFailed) {
199                 /* empty. */
200         }
201
202         /**
203          * {@inheritDoc}
204          */
205         public void receivedPutFailed(FcpConnection fcpConnection, PutFailed putFailed) {
206                 /* empty. */
207         }
208
209         /**
210          * {@inheritDoc}
211          */
212         public void receivedIdentifierCollision(FcpConnection fcpConnection, IdentifierCollision identifierCollision) {
213                 /* empty. */
214         }
215
216         /**
217          * {@inheritDoc}
218          */
219         public void receivedPersistentPutDir(FcpConnection fcpConnection, PersistentPutDir persistentPutDir) {
220                 /* empty. */
221         }
222
223         /**
224          * {@inheritDoc}
225          */
226         public void receivedPersistentRequestRemoved(FcpConnection fcpConnection, PersistentRequestRemoved persistentRequestRemoved) {
227                 /* empty. */
228         }
229
230         /**
231          * {@inheritDoc}
232          */
233         public void receivedSubscribedUSKUpdate(FcpConnection fcpConnection, SubscribedUSKUpdate subscribedUSKUpdate) {
234                 /* empty. */
235         }
236
237         /**
238          * {@inheritDoc}
239          */
240         public void receivedPluginInfo(FcpConnection fcpConnection, PluginInfo pluginInfo) {
241                 /* empty. */
242         }
243
244         /**
245          * {@inheritDoc}
246          */
247         public void receivedFCPPluginReply(FcpConnection fcpConnection, FCPPluginReply fcpPluginReply) {
248                 /* empty. */
249         }
250
251         /**
252          * {@inheritDoc}
253          */
254         public void receivedPersistentRequestModified(FcpConnection fcpConnection, PersistentRequestModified persistentRequestModified) {
255                 /* empty. */
256         }
257
258         /**
259          * {@inheritDoc}
260          */
261         public void receivedPutSuccessful(FcpConnection fcpConnection, PutSuccessful putSuccessful) {
262                 /* empty. */
263         }
264
265         /**
266          * {@inheritDoc}
267          */
268         public void receivedPutFetchable(FcpConnection fcpConnection, PutFetchable putFetchable) {
269                 /* empty. */
270         }
271
272         /**
273          * {@inheritDoc}
274          */
275         public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError) {
276                 /* empty. */
277         }
278
279         /**
280          * {@inheritDoc}
281          */
282         public void receivedMessage(FcpConnection fcpConnection, FcpMessage fcpMessage) {
283                 /* empty. */
284         }
285
286         /**
287          * {@inheritDoc}
288          */
289         public void connectionClosed(FcpConnection fcpConnection, Throwable throwable) {
290                 /* empty. */
291         }
292
293 }