remove Id keyword
[jSite2.git] / src / net / pterodactylus / jsite / core / Core.java
index f04bb40..4909b4d 100644 (file)
 
 package net.pterodactylus.jsite.core;
 
+import java.io.IOException;
 import java.net.UnknownHostException;
 import java.util.List;
 
+import net.pterodactylus.jsite.project.Project;
+
 /**
  * Interface for the core.
  * 
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
- * @version $Id$
  */
 public interface Core {
 
@@ -51,10 +53,12 @@ public interface Core {
         * 
         * @param node
         *            The node to add
+        * @return <code>true</code> if the node was added, <code>false</code>
+        *         if it was not added because it was already known
         * @throws UnknownHostException
         *             if the hostname of the node can not be resolved
         */
-       public void addNode(Node node) throws UnknownHostException;
+       public boolean addNode(Node node) throws UnknownHostException;
 
        /**
         * Removes the given node from the core.
@@ -107,4 +111,23 @@ public interface Core {
         */
        public void disconnectFromNode(Node node);
 
+       /**
+        * Creates a new project. The returned {@link Project} will contain a newly
+        * generated key pair.
+        * 
+        * @return A newly created project
+        * @throws IOException
+        *             if an I/O error occured communicating with the node
+        * @throws JSiteException
+        *             if there is a problem with the node
+        */
+       public Project createProject() throws IOException, JSiteException;
+
+       /**
+        * Returns a list of all projects.
+        * 
+        * @return A list of all projects
+        */
+       public List<Project> getProjects();
+
 }