create projects in core without name
[jSite2.git] / src / net / pterodactylus / jsite / core / Core.java
index 38e8914..3e8357d 100644 (file)
@@ -19,6 +19,7 @@
 
 package net.pterodactylus.jsite.core;
 
+import java.io.IOException;
 import java.net.UnknownHostException;
 import java.util.List;
 
@@ -109,4 +110,16 @@ 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 NoNodeException
+        *             if no node is configured
+        */
+       public Project createProject() throws IOException, NoNodeException;
+
 }