added missing getter and setter methods

This commit is contained in:
Sebastian Sdorra
2012-04-19 21:46:04 +02:00
parent bd72643eeb
commit 8d14fcb911

View File

@@ -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 --------------------------------------------------------------
/**