James Moger
2011-07-18 b795b83d76b7a044c7d5bafeb8e45eefb1303581
src/com/gitblit/models/RepositoryModel.java
@@ -20,6 +20,13 @@
import com.gitblit.Constants.AccessRestrictionType;
/**
 * RepositoryModel is a serializable model class that represents a Gitblit
 * repository including its configuration settings and access restriction.
 *
 * @author James Moger
 *
 */
public class RepositoryModel implements Serializable {
   private static final long serialVersionUID = 1L;
@@ -35,13 +42,10 @@
   public boolean useDocs;
   public AccessRestrictionType accessRestriction;
   public boolean isFrozen;
   public boolean showReadme;
   public RepositoryModel() {
      this.name = "";
      this.description = "";
      this.owner = "";
      this.lastChange = new Date(0);
      this.accessRestriction = AccessRestrictionType.NONE;
      this("", "", "", new Date(0));
   }
   public RepositoryModel(String name, String description, String owner, Date lastchange) {