X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fcore%2FCore.java;h=b84c786e3d78c53caf35052dc80e3f236b0ba570;hb=d7d47df76c18b4340d15ca785e65ab920ccae50e;hp=0bf2ccacc100aa468542ec5dc9eef7b641207e14;hpb=ebd531bc775036dd66a7e20abebbcb480af35491;p=jSite2.git diff --git a/src/net/pterodactylus/jsite/core/Core.java b/src/net/pterodactylus/jsite/core/Core.java index 0bf2cca..b84c786 100644 --- a/src/net/pterodactylus/jsite/core/Core.java +++ b/src/net/pterodactylus/jsite/core/Core.java @@ -19,8 +19,12 @@ 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. * @@ -50,8 +54,12 @@ public interface Core { * * @param node * The node to add + * @return true if the node was added, false + * 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); + public boolean addNode(Node node) throws UnknownHostException; /** * Removes the given node from the core. @@ -104,4 +112,23 @@ public interface Core { */ public void disconnectFromNode(Node node); -} \ No newline at end of file + /** + * 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 getProjects(); + +}