7021332114486ec2c5f6fd9654a9ec79c191b79c
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / plugin / ConnectorListenerManager.java
1 /*
2  * Sone - ConnectorListenerManager.java - Copyright © 2010 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.freenet.plugin;
19
20 import net.pterodactylus.util.event.AbstractListenerManager;
21 import freenet.support.SimpleFieldSet;
22 import freenet.support.api.Bucket;
23
24 /**
25  * Manages {@link ConnectorListener}s and fire events.
26  *
27  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
28  */
29 public class ConnectorListenerManager extends AbstractListenerManager<PluginConnector, ConnectorListener> {
30
31         /**
32          * Creates a new manager for {@link ConnectorListener}s.
33          *
34          * @param pluginConnector
35          *            The plugin connector that is the source for all events
36          */
37         public ConnectorListenerManager(PluginConnector pluginConnector) {
38                 super(pluginConnector);
39         }
40
41         //
42         // ACTIONS
43         //
44
45         /**
46          * Notifies all registered listeners that a reply from the plugin was
47          * received.
48          *
49          * @param fields
50          *            The fields of the reply
51          * @param data
52          *            The data of the reply (may be null)
53          */
54         public void fireReceivedReply(SimpleFieldSet fields, Bucket data) {
55                 for (ConnectorListener connectorListener : getListeners()) {
56                         connectorListener.receivedReply(getSource(), fields, data);
57                 }
58         }
59
60 }