491adf3b0c6a0d27d45dfd6acd9c524364ed4abe
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpAdapter.java
1 /**
2  * © 2008 INA Service GmbH
3  */
4 package net.pterodactylus.util.fcp;
5
6 /**
7  * Adapter for {@link FcpListener}.
8  * 
9  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
10  * @version $Id$
11  */
12 public class FcpAdapter implements FcpListener {
13
14         /**
15          * {@inheritDoc}
16          */
17         public void receivedNodeHello(FcpConnection fcpConnection, NodeHello nodeHello) {
18                 /* empty. */
19         }
20
21         /**
22          * {@inheritDoc}
23          */
24         public void receivedCloseConnectionDuplicateClientName(FcpConnection fcpConnection, CloseConnectionDuplicateClientName closeConnectionDuplicateClientName) {
25                 /* empty. */
26         }
27
28         /**
29          * {@inheritDoc}
30          */
31         public void receivedSSKKeypair(FcpConnection fcpConnection, SSKKeypair sskKeypair) {
32                 /* empty. */
33         }
34
35         /**
36          * {@inheritDoc}
37          */
38         public void receivedPeer(FcpConnection fcpConnection, Peer peer) {
39                 /* empty. */
40         }
41
42         /**
43          * {@inheritDoc}
44          */
45         public void receivedEndListPeers(FcpConnection fcpConnection, EndListPeers endListPeers) {
46                 /* empty. */
47         }
48
49         /**
50          * {@inheritDoc}
51          */
52         public void receivedPeerNote(FcpConnection fcpConnection, PeerNote peerNote) {
53                 /* empty. */
54         }
55
56         /**
57          * {@inheritDoc}
58          */
59         public void receivedEndListPeerNotes(FcpConnection fcpConnection, EndListPeerNotes endListPeerNotes) {
60                 /* empty. */
61         }
62
63         /**
64          * {@inheritDoc}
65          */
66         public void receivedPeerRemoved(FcpConnection fcpConnection, PeerRemoved peerRemoved) {
67                 /* empty. */
68         }
69
70         /**
71          * {@inheritDoc}
72          * 
73          * @see FcpListener#receivedNodeData(FcpConnection, NodeData)
74          */
75         public void receivedNodeData(FcpConnection fcpConnection, NodeData nodeData) {
76                 /* empty. */
77         }
78
79         /**
80          * {@inheritDoc}
81          * 
82          * @see FcpListener#receivedTestDDAReply(FcpConnection, TestDDAReply)
83          */
84         public void receivedTestDDAReply(FcpConnection fcpConnection, TestDDAReply testDDAReply) {
85                 /* empty. */
86         }
87
88         /**
89          * {@inheritDoc}
90          */
91         public void receivedTestDDAComplete(FcpConnection fcpConnection, TestDDAComplete testDDAComplete) {
92                 /* empty. */
93         }
94
95         /**
96          * {@inheritDoc}
97          */
98         public void receivedPersistentGet(FcpConnection fcpConnection, PersistentGet persistentGet) {
99                 /* empty. */
100         }
101
102         /**
103          * {@inheritDoc}
104          */
105         public void receivedPersistentPut(FcpConnection fcpConnection, PersistentPut persistentPut) {
106                 /* empty. */
107         }
108
109         /**
110          * {@inheritDoc}
111          */
112         public void receivedEndListPersistentRequests(FcpConnection fcpConnection, EndListPersistentRequests endListPersistentRequests) {
113                 /* empty. */
114         }
115
116         /**
117          * {@inheritDoc}
118          */
119         public void receivedURIGenerated(FcpConnection fcpConnection, URIGenerated uriGenerated) {
120                 /* empty. */
121         }
122
123         /**
124          * {@inheritDoc}
125          */
126         public void receivedDataFound(FcpConnection fcpConnection, DataFound dataFound) {
127                 /* empty. */
128         }
129
130         /**
131          * {@inheritDoc}
132          */
133         public void receivedAllData(FcpConnection fcpConnection, AllData allData) {
134                 /* empty. */
135         }
136
137         /**
138          * {@inheritDoc}
139          */
140         public void receivedSimpleProgress(FcpConnection fcpConnection, SimpleProgress simpleProgress) {
141                 /* empty. */
142         }
143
144         /**
145          * {@inheritDoc}
146          */
147         public void receivedStartedCompression(FcpConnection fcpConnection, StartedCompression startedCompression) {
148                 /* empty. */
149         }
150
151         /**
152          * {@inheritDoc}
153          */
154         public void receviedFinishedCompression(FcpConnection fcpConnection, FinishedCompression finishedCompression) {
155                 /* empty. */
156         }
157
158         /**
159          * {@inheritDoc}
160          */
161         public void receivedUnknownPeerNoteType(FcpConnection fcpConnection, UnknownPeerNoteType unknownPeerNoteType) {
162                 /* empty. */
163         }
164
165         /**
166          * {@inheritDoc}
167          */
168         public void receivedUnknownNodeIdentifier(FcpConnection fcpConnection, UnknownNodeIdentifier unknownNodeIdentifier) {
169                 /* empty. */
170         }
171
172         /**
173          * {@inheritDoc}
174          */
175         public void receivedConfigData(FcpConnection fcpConnection, ConfigData configData) {
176                 /* empty. */
177         }
178
179         /**
180          * {@inheritDoc}
181          */
182         public void receivedGetFailed(FcpConnection fcpConnection, GetFailed getFailed) {
183                 /* empty. */
184         }
185
186         /**
187          * {@inheritDoc}
188          */
189         public void receivedPutFailed(FcpConnection fcpConnection, PutFailed putFailed) {
190                 /* empty. */
191         }
192
193         /**
194          * {@inheritDoc}
195          */
196         public void receivedIdentifierCollision(FcpConnection fcpConnection, IdentifierCollision identifierCollision) {
197                 /* empty. */
198         }
199
200         /**
201          * {@inheritDoc}
202          */
203         public void receivedPersistentPutDir(FcpConnection fcpConnection, PersistentPutDir persistentPutDir) {
204                 /* empty. */
205         }
206
207         /**
208          * {@inheritDoc}
209          */
210         public void receivedPersistentRequestRemoved(FcpConnection fcpConnection, PersistentRequestRemoved persistentRequestRemoved) {
211                 /* empty. */
212         }
213
214         /**
215          * {@inheritDoc}
216          */
217         public void receivedSubscribedUSKUpdate(FcpConnection fcpConnection, SubscribedUSKUpdate subscribedUSKUpdate) {
218                 /* empty. */
219         }
220
221         /**
222          * {@inheritDoc}
223          */
224         public void receivedPluginInfo(FcpConnection fcpConnection, PluginInfo pluginInfo) {
225                 /* empty. */
226         }
227
228         /**
229          * {@inheritDoc}
230          */
231         public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError) {
232                 /* empty. */
233         }
234
235         /**
236          * {@inheritDoc}
237          */
238         public void receivedMessage(FcpConnection fcpConnection, FcpMessage fcpMessage) {
239                 /* empty. */
240         }
241
242 }