09ff696fe8a4d68956bc7b6adaed93e315438d32
[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  */
27 public class FcpAdapter implements FcpListener {
28
29         /**
30          * {@inheritDoc}
31          */
32         public void receivedNodeHello(FcpConnection fcpConnection, NodeHello nodeHello) {
33                 /* empty. */
34         }
35
36         /**
37          * {@inheritDoc}
38          */
39         public void receivedCloseConnectionDuplicateClientName(FcpConnection fcpConnection, CloseConnectionDuplicateClientName closeConnectionDuplicateClientName) {
40                 /* empty. */
41         }
42
43         /**
44          * {@inheritDoc}
45          */
46         public void receivedSSKKeypair(FcpConnection fcpConnection, SSKKeypair sskKeypair) {
47                 /* empty. */
48         }
49
50         /**
51          * {@inheritDoc}
52          */
53         public void receivedPeer(FcpConnection fcpConnection, Peer peer) {
54                 /* empty. */
55         }
56
57         /**
58          * {@inheritDoc}
59          */
60         public void receivedEndListPeers(FcpConnection fcpConnection, EndListPeers endListPeers) {
61                 /* empty. */
62         }
63
64         /**
65          * {@inheritDoc}
66          */
67         public void receivedPeerNote(FcpConnection fcpConnection, PeerNote peerNote) {
68                 /* empty. */
69         }
70
71         /**
72          * {@inheritDoc}
73          */
74         public void receivedEndListPeerNotes(FcpConnection fcpConnection, EndListPeerNotes endListPeerNotes) {
75                 /* empty. */
76         }
77
78         /**
79          * {@inheritDoc}
80          */
81         public void receivedPeerRemoved(FcpConnection fcpConnection, PeerRemoved peerRemoved) {
82                 /* empty. */
83         }
84
85         /**
86          * {@inheritDoc}
87          * 
88          * @see FcpListener#receivedNodeData(FcpConnection, NodeData)
89          */
90         public void receivedNodeData(FcpConnection fcpConnection, NodeData nodeData) {
91                 /* empty. */
92         }
93
94         /**
95          * {@inheritDoc}
96          * 
97          * @see FcpListener#receivedTestDDAReply(FcpConnection, TestDDAReply)
98          */
99         public void receivedTestDDAReply(FcpConnection fcpConnection, TestDDAReply testDDAReply) {
100                 /* empty. */
101         }
102
103         /**
104          * {@inheritDoc}
105          */
106         public void receivedTestDDAComplete(FcpConnection fcpConnection, TestDDAComplete testDDAComplete) {
107                 /* empty. */
108         }
109
110         /**
111          * {@inheritDoc}
112          */
113         public void receivedPersistentGet(FcpConnection fcpConnection, PersistentGet persistentGet) {
114                 /* empty. */
115         }
116
117         /**
118          * {@inheritDoc}
119          */
120         public void receivedPersistentPut(FcpConnection fcpConnection, PersistentPut persistentPut) {
121                 /* empty. */
122         }
123
124         /**
125          * {@inheritDoc}
126          */
127         public void receivedEndListPersistentRequests(FcpConnection fcpConnection, EndListPersistentRequests endListPersistentRequests) {
128                 /* empty. */
129         }
130
131         /**
132          * {@inheritDoc}
133          */
134         public void receivedURIGenerated(FcpConnection fcpConnection, URIGenerated uriGenerated) {
135                 /* empty. */
136         }
137
138         /**
139          * {@inheritDoc}
140          */
141         public void receivedDataFound(FcpConnection fcpConnection, DataFound dataFound) {
142                 /* empty. */
143         }
144
145         /**
146          * {@inheritDoc}
147          */
148         public void receivedAllData(FcpConnection fcpConnection, AllData allData) {
149                 /* empty. */
150         }
151
152         /**
153          * {@inheritDoc}
154          */
155         public void receivedSimpleProgress(FcpConnection fcpConnection, SimpleProgress simpleProgress) {
156                 /* empty. */
157         }
158
159         /**
160          * {@inheritDoc}
161          */
162         public void receivedStartedCompression(FcpConnection fcpConnection, StartedCompression startedCompression) {
163                 /* empty. */
164         }
165
166         /**
167          * {@inheritDoc}
168          */
169         public void receivedFinishedCompression(FcpConnection fcpConnection, FinishedCompression finishedCompression) {
170                 /* empty. */
171         }
172
173         /**
174          * {@inheritDoc}
175          */
176         public void receivedUnknownPeerNoteType(FcpConnection fcpConnection, UnknownPeerNoteType unknownPeerNoteType) {
177                 /* empty. */
178         }
179
180         /**
181          * {@inheritDoc}
182          */
183         public void receivedUnknownNodeIdentifier(FcpConnection fcpConnection, UnknownNodeIdentifier unknownNodeIdentifier) {
184                 /* empty. */
185         }
186
187         /**
188          * {@inheritDoc}
189          */
190         public void receivedConfigData(FcpConnection fcpConnection, ConfigData configData) {
191                 /* empty. */
192         }
193
194         /**
195          * {@inheritDoc}
196          */
197         public void receivedGetFailed(FcpConnection fcpConnection, GetFailed getFailed) {
198                 /* empty. */
199         }
200
201         /**
202          * {@inheritDoc}
203          */
204         public void receivedPutFailed(FcpConnection fcpConnection, PutFailed putFailed) {
205                 /* empty. */
206         }
207
208         /**
209          * {@inheritDoc}
210          */
211         public void receivedIdentifierCollision(FcpConnection fcpConnection, IdentifierCollision identifierCollision) {
212                 /* empty. */
213         }
214
215         /**
216          * {@inheritDoc}
217          */
218         public void receivedPersistentPutDir(FcpConnection fcpConnection, PersistentPutDir persistentPutDir) {
219                 /* empty. */
220         }
221
222         /**
223          * {@inheritDoc}
224          */
225         public void receivedPersistentRequestRemoved(FcpConnection fcpConnection, PersistentRequestRemoved persistentRequestRemoved) {
226                 /* empty. */
227         }
228
229         /**
230          * {@inheritDoc}
231          */
232         public void receivedSubscribedUSKUpdate(FcpConnection fcpConnection, SubscribedUSKUpdate subscribedUSKUpdate) {
233                 /* empty. */
234         }
235
236         /**
237          * {@inheritDoc}
238          */
239         public void receivedPluginInfo(FcpConnection fcpConnection, PluginInfo pluginInfo) {
240                 /* empty. */
241         }
242
243         /**
244          * {@inheritDoc}
245          */
246         public void receivedFCPPluginReply(FcpConnection fcpConnection, FCPPluginReply fcpPluginReply) {
247                 /* empty. */
248         }
249
250         /**
251          * {@inheritDoc}
252          */
253         public void receivedPersistentRequestModified(FcpConnection fcpConnection, PersistentRequestModified persistentRequestModified) {
254                 /* empty. */
255         }
256
257         /**
258          * {@inheritDoc}
259          */
260         public void receivedPutSuccessful(FcpConnection fcpConnection, PutSuccessful putSuccessful) {
261                 /* empty. */
262         }
263
264         /**
265          * {@inheritDoc}
266          */
267         public void receivedPutFetchable(FcpConnection fcpConnection, PutFetchable putFetchable) {
268                 /* empty. */
269         }
270
271         /**
272          * {@inheritDoc}
273          */
274         public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError) {
275                 /* empty. */
276         }
277
278         /**
279          * {@inheritDoc}
280          */
281         public void receivedBookmarkFeed(FcpConnection fcpConnection, ReceivedBookmarkFeed receivedBookmarkFeed) {
282                 /* empty. */
283         }
284
285         /**
286          * {@inheritDoc}
287          */
288         public void receivedMessage(FcpConnection fcpConnection, FcpMessage fcpMessage) {
289                 /* empty. */
290         }
291
292         /**
293          * {@inheritDoc}
294          */
295         public void connectionClosed(FcpConnection fcpConnection, Throwable throwable) {
296                 /* empty. */
297         }
298
299 }