X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fcore%2FProject.java;h=71eba5ff043c07fe4012ff877ff3196719492900;hb=e5c7a1609ef6d0878f98c3e8c2819bc1430f96f7;hp=8a1de1d109a78fff16ed9ddfeb315a8d37463b64;hpb=c785ca4d7b634f79e1f30202915633aa92e4152c;p=jSite2.git diff --git a/src/net/pterodactylus/jsite/core/Project.java b/src/net/pterodactylus/jsite/core/Project.java index 8a1de1d..71eba5f 100644 --- a/src/net/pterodactylus/jsite/core/Project.java +++ b/src/net/pterodactylus/jsite/core/Project.java @@ -44,7 +44,7 @@ public class Project { * * @return The name of the project */ - String getName() { + public String getName() { return name; } @@ -54,7 +54,7 @@ public class Project { * @param name * The name of the project */ - void setName(String name) { + public void setName(String name) { this.name = name; } @@ -63,7 +63,7 @@ public class Project { * * @return The local path of the project */ - String getLocalPath() { + public String getLocalPath() { return localPath; } @@ -73,7 +73,7 @@ public class Project { * @param localPath * The local path of the project */ - void setLocalPath(String localPath) { + public void setLocalPath(String localPath) { this.localPath = localPath; } @@ -82,7 +82,7 @@ public class Project { * * @return The public key of the project */ - String getPublicKey() { + public String getPublicKey() { return publicKey; } @@ -92,7 +92,7 @@ public class Project { * @param publicKey * The public key of the project */ - void setPublicKey(String publicKey) { + public void setPublicKey(String publicKey) { this.publicKey = publicKey; } @@ -101,7 +101,7 @@ public class Project { * * @return The private key of the project */ - String getPrivateKey() { + public String getPrivateKey() { return privateKey; } @@ -111,7 +111,7 @@ public class Project { * @param privateKey * The private key of the project */ - void setPrivateKey(String privateKey) { + public void setPrivateKey(String privateKey) { this.privateKey = privateKey; }