From 8d14fcb91186317b231b188b3f8a49456b98babd Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Thu, 19 Apr 2012 21:46:04 +0200 Subject: [PATCH] added missing getter and setter methods --- .../cli/cmd/ModifyRepositorySubCommand.java | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/scm-clients/scm-cli-client/src/main/java/sonia/scm/cli/cmd/ModifyRepositorySubCommand.java b/scm-clients/scm-cli-client/src/main/java/sonia/scm/cli/cmd/ModifyRepositorySubCommand.java index 1a699d7173..1f991fa746 100644 --- a/scm-clients/scm-cli-client/src/main/java/sonia/scm/cli/cmd/ModifyRepositorySubCommand.java +++ b/scm-clients/scm-cli-client/src/main/java/sonia/scm/cli/cmd/ModifyRepositorySubCommand.java @@ -63,6 +63,17 @@ import java.util.Map; public class ModifyRepositorySubCommand extends TemplateSubCommand { + /** + * Method description + * + * + * @return + */ + public Boolean getArchvied() + { + return archvied; + } + /** * Method description * @@ -85,8 +96,41 @@ public class ModifyRepositorySubCommand extends TemplateSubCommand return description; } + /** + * Method description + * + * + * @return + */ + public String getId() + { + return id; + } + + /** + * Method description + * + * + * @return + */ + public Boolean getPublicReadable() + { + return publicReadable; + } + //~--- set methods ---------------------------------------------------------- + /** + * Method description + * + * + * @param archvied + */ + public void setArchvied(Boolean archvied) + { + this.archvied = archvied; + } + /** * Method description * @@ -109,6 +153,28 @@ public class ModifyRepositorySubCommand extends TemplateSubCommand this.description = description; } + /** + * Method description + * + * + * @param id + */ + public void setId(String id) + { + this.id = id; + } + + /** + * Method description + * + * + * @param publicReadable + */ + public void setPublicReadable(Boolean publicReadable) + { + this.publicReadable = publicReadable; + } + //~--- methods -------------------------------------------------------------- /**