fd4fb76dade57a54b01bb2be32fee8c383a86d79
[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          * @see net.pterodactylus.util.fcp.FcpListener#receivedNodeHello(net.pterodactylus.util.fcp.FcpConnection,
16          *      net.pterodactylus.util.fcp.NodeHello)
17          */
18         public void receivedNodeHello(FcpConnection fcpConnection, NodeHello nodeHello) {
19                 /* empty. */
20         }
21
22         /**
23          * @see net.pterodactylus.util.fcp.FcpListener#receivedCloseConnectionDuplicateClientName(net.pterodactylus.util.fcp.FcpConnection,
24          *      net.pterodactylus.util.fcp.CloseConnectionDuplicateClientName)
25          */
26         public void receivedCloseConnectionDuplicateClientName(FcpConnection fcpConnection, CloseConnectionDuplicateClientName closeConnectionDuplicateClientName) {
27                 /* empty. */
28         }
29
30         /**
31          * @see net.pterodactylus.util.fcp.FcpListener#receivedSSKKeypair(net.pterodactylus.util.fcp.FcpConnection,
32          *      net.pterodactylus.util.fcp.SSKKeypair)
33          */
34         public void receivedSSKKeypair(FcpConnection fcpConnection, SSKKeypair sskKeypair) {
35                 /* empty. */
36         }
37
38         /**
39          * @see net.pterodactylus.util.fcp.FcpListener#receivedPeer(net.pterodactylus.util.fcp.FcpConnection,
40          *      net.pterodactylus.util.fcp.Peer)
41          */
42         public void receivedPeer(FcpConnection fcpConnection, Peer peer) {
43                 /* empty. */
44         }
45
46         /**
47          * @see net.pterodactylus.util.fcp.FcpListener#receivedEndListPeers(net.pterodactylus.util.fcp.FcpConnection,
48          *      net.pterodactylus.util.fcp.EndListPeers)
49          */
50         public void receivedEndListPeers(FcpConnection fcpConnection, EndListPeers endListPeers) {
51                 /* empty. */
52         }
53
54         /**
55          * @see net.pterodactylus.util.fcp.FcpListener#receivedPeerNote(net.pterodactylus.util.fcp.FcpConnection,
56          *      net.pterodactylus.util.fcp.PeerNote)
57          */
58         public void receivedPeerNote(FcpConnection fcpConnection, PeerNote peerNote) {
59                 /* empty. */
60         }
61
62         /**
63          * @see net.pterodactylus.util.fcp.FcpListener#receivedEndListPeerNotes(net.pterodactylus.util.fcp.FcpConnection,
64          *      net.pterodactylus.util.fcp.EndListPeerNotes)
65          */
66         public void receivedEndListPeerNotes(FcpConnection fcpConnection, EndListPeerNotes endListPeerNotes) {
67                 /* empty. */
68         }
69
70         /**
71          * @see net.pterodactylus.util.fcp.FcpListener#receivedPeerRemoved(net.pterodactylus.util.fcp.FcpConnection,
72          *      net.pterodactylus.util.fcp.PeerRemoved)
73          */
74         public void receivedPeerRemoved(FcpConnection fcpConnection, PeerRemoved peerRemoved) {
75                 /* empty. */
76         }
77
78         /**
79          * {@inheritDoc}
80          * 
81          * @see FcpListener#receivedNodeData(net.pterodactylus.util.fcp.FcpConnection,
82          *      net.pterodactylus.util.fcp.NodeData)
83          */
84         public void receivedNodeData(FcpConnection fcpConnection, NodeData nodeData) {
85                 /* empty. */
86         }
87
88         /**
89          * {@inheritDoc}
90          * 
91          * @see net.pterodactylus.util.fcp.FcpListener#receivedTestDDAReply(net.pterodactylus.util.fcp.FcpConnection,
92          *      net.pterodactylus.util.fcp.TestDDAReply)
93          */
94         public void receivedTestDDAReply(FcpConnection fcpConnection, TestDDAReply testDDAReply) {
95                 /* empty. */
96         }
97
98         /**
99          * @see net.pterodactylus.util.fcp.FcpListener#receivedTestDDAComplete(net.pterodactylus.util.fcp.FcpConnection,
100          *      net.pterodactylus.util.fcp.TestDDAComplete)
101          */
102         public void receivedTestDDAComplete(FcpConnection fcpConnection, TestDDAComplete testDDAComplete) {
103                 /* empty. */
104         }
105
106         /**
107          * @see net.pterodactylus.util.fcp.FcpListener#receivedPersistentGet(net.pterodactylus.util.fcp.FcpConnection,
108          *      net.pterodactylus.util.fcp.PersistentGet)
109          */
110         public void receivedPersistentGet(FcpConnection fcpConnection, PersistentGet persistentGet) {
111                 /* empty. */
112         }
113
114         /**
115          * @see net.pterodactylus.util.fcp.FcpListener#receivedPersistentPut(net.pterodactylus.util.fcp.FcpConnection,
116          *      net.pterodactylus.util.fcp.PersistentPut)
117          */
118         public void receivedPersistentPut(FcpConnection fcpConnection, PersistentPut persistentPut) {
119                 /* empty. */
120         }
121
122         /**
123          * @see net.pterodactylus.util.fcp.FcpListener#receivedEndListPersistentRequests(net.pterodactylus.util.fcp.FcpConnection,
124          *      net.pterodactylus.util.fcp.EndListPersistentRequests)
125          */
126         public void receivedEndListPersistentRequests(FcpConnection fcpConnection, EndListPersistentRequests endListPersistentRequests) {
127                 /* empty. */
128         }
129
130         /**
131          * @see net.pterodactylus.util.fcp.FcpListener#receivedURIGenerated(net.pterodactylus.util.fcp.FcpConnection,
132          *      net.pterodactylus.util.fcp.URIGenerated)
133          */
134         public void receivedURIGenerated(FcpConnection fcpConnection, URIGenerated uriGenerated) {
135                 /* empty. */
136         }
137
138         /**
139          * @see FcpListener#receivedDataFound(FcpConnection, DataFound)
140          */
141         public void receivedDataFound(FcpConnection fcpConnection, DataFound dataFound) {
142                 /* empty. */
143         }
144
145         /**
146          * @see net.pterodactylus.util.fcp.FcpListener#receivedAllData(net.pterodactylus.util.fcp.FcpConnection,
147          *      net.pterodactylus.util.fcp.AllData)
148          */
149         public void receivedAllData(FcpConnection fcpConnection, AllData allData) {
150                 /* empty. */
151         }
152
153         /**
154          * @see net.pterodactylus.util.fcp.FcpListener#receivedSimpleProgress(net.pterodactylus.util.fcp.FcpConnection,
155          *      net.pterodactylus.util.fcp.SimpleProgress)
156          */
157         public void receivedSimpleProgress(FcpConnection fcpConnection, SimpleProgress simpleProgress) {
158                 /* empty. */
159         }
160
161         /**
162          * @see net.pterodactylus.util.fcp.FcpListener#receivedStartedCompression(net.pterodactylus.util.fcp.FcpConnection,
163          *      net.pterodactylus.util.fcp.StartedCompression)
164          */
165         public void receivedStartedCompression(FcpConnection fcpConnection, StartedCompression startedCompression) {
166                 /* empty. */
167         }
168
169         /**
170          * @see net.pterodactylus.util.fcp.FcpListener#receviedFinishedCompression(net.pterodactylus.util.fcp.FcpConnection,
171          *      net.pterodactylus.util.fcp.FinishedCompression)
172          */
173         public void receviedFinishedCompression(FcpConnection fcpConnection, FinishedCompression finishedCompression) {
174                 /* empty. */
175         }
176
177         /**
178          * @see net.pterodactylus.util.fcp.FcpListener#receivedProtocolError(net.pterodactylus.util.fcp.FcpConnection,
179          *      net.pterodactylus.util.fcp.ProtocolError)
180          */
181         public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError) {
182                 /* empty. */
183         }
184
185         /**
186          * @see net.pterodactylus.util.fcp.FcpListener#receivedMessage(net.pterodactylus.util.fcp.FcpConnection,
187          *      net.pterodactylus.util.fcp.FcpMessage)
188          */
189         public void receivedMessage(FcpConnection fcpConnection, FcpMessage fcpMessage) {
190                 /* empty. */
191         }
192
193 }