move project stuff again
[jSite2.git] / src / net / pterodactylus / jsite / core / Core.java
index 3e8357d..4a3531a 100644 (file)
@@ -22,12 +22,13 @@ package net.pterodactylus.jsite.core;
 import java.io.IOException;
 import java.net.UnknownHostException;
 import java.util.List;
+import java.util.concurrent.Executor;
+
 
 /**
  * Interface for the core.
  * 
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
- * @version $Id$
  */
 public interface Core {
 
@@ -48,6 +49,13 @@ public interface Core {
        public void removeCoreListener(CoreListener coreListener);
 
        /**
+        * Returns a thread pool.
+        * 
+        * @return A thread pool
+        */
+       public Executor getThreadPool();
+
+       /**
         * Adds the given node to the core.
         * 
         * @param node
@@ -111,15 +119,38 @@ public interface Core {
        public void disconnectFromNode(Node node);
 
        /**
-        * Creates a new project. The returned {@link Project} will contain a newly
-        * generated key pair.
+        * Creates a new project.
         * 
-        * @return A newly created project
         * @throws IOException
         *             if an I/O error occured communicating with the node
-        * @throws NoNodeException
-        *             if no node is configured
+        * @throws JSiteException
+        *             if there is a problem with the node
+        */
+       public void createProject() throws IOException, JSiteException;
+
+       /**
+        * Clones the given project. {@link CoreListener}s will be notified of the
+        * new clone via the {@link CoreListener#projectCloned(Project, Project)}
+        * event.
+        * 
+        * @param project
+        *            The project to clone
+        */
+       public void cloneProject(Project project);
+
+       /**
+        * Removes the given project.
+        * 
+        * @param project
+        *            The project to remove
+        */
+       public void removeProject(Project project);
+
+       /**
+        * Returns a list of all projects.
+        * 
+        * @return A list of all projects
         */
-       public Project createProject() throws IOException, NoNodeException;
+       public List<Project> getProjects();
 
 }