make delete and clone buttons project specific
[jSite2.git] / src / net / pterodactylus / jsite / core / Core.java
index d2a5e10..325d4c5 100644 (file)
@@ -23,11 +23,12 @@ 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 {
 
@@ -111,17 +112,28 @@ public interface Core {
        public void disconnectFromNode(Node node);
 
        /**
-        * Creates a new project with the given name. The returned {@link Project}
-        * will contain a newly generated key pair.
+        * Creates a new project.
         * 
-        * @param projectName
-        *            The name of the 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;
+
+       /**
+        * 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(String projectName) throws IOException, NoNodeException;
+       public List<Project> getProjects();
 
 }