make connections work
[jSite2.git] / src / net / pterodactylus / jsite / core / Core.java
1 /*
2  * jSite2 - Core.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.jsite.core;
21
22 import java.net.UnknownHostException;
23 import java.util.List;
24
25 /**
26  * Interface for the core.
27  * 
28  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
29  * @version $Id$
30  */
31 public interface Core {
32
33         /**
34          * Adds the given listener to the list of registered listeners.
35          * 
36          * @param coreListener
37          *            The listener to add
38          */
39         public void addCoreListener(CoreListener coreListener);
40
41         /**
42          * Removes the given listener from the list of registered listeners.
43          * 
44          * @param coreListener
45          *            The listener to remove
46          */
47         public void removeCoreListener(CoreListener coreListener);
48
49         /**
50          * Adds the given node to the core.
51          * 
52          * @param node
53          *            The node to add
54          * @return <code>true</code> if the node was added, <code>false</code>
55          *         if it was not added because it was already known
56          * @throws UnknownHostException
57          *             if the hostname of the node can not be resolved
58          */
59         public boolean addNode(Node node) throws UnknownHostException;
60
61         /**
62          * Removes the given node from the core.
63          * 
64          * @param node
65          *            The node to remove
66          */
67         public void removeNode(Node node);
68
69         /**
70          * Returns the list of all configured nodes.
71          * 
72          * @return All configured nodes
73          */
74         public List<Node> getNodes();
75
76         /**
77          * Returns whether the core is currently connected to the given node.
78          * 
79          * @param node
80          *            The node to check
81          * @return <code>true</code> if the core is currently connected to the
82          *         node, <code>false</code> otherwise
83          */
84         public boolean isNodeConnected(Node node);
85
86         /**
87          * Starts the core.
88          */
89         public void start();
90
91         /**
92          * Stops the core.
93          */
94         public void stop();
95
96         /**
97          * Connects to the given node.
98          * 
99          * @param node
100          *            The node to connect to
101          */
102         public void connectToNode(Node node);
103
104         /**
105          * Disconnects from the given node.
106          * 
107          * @param node
108          *            The node to disconnect from
109          */
110         public void disconnectFromNode(Node node);
111
112 }