| | |
| | | public class RepositoryModel implements Serializable {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | | public final String name;
|
| | | public final String description;
|
| | | public final String owner;
|
| | | public final Date lastChange;
|
| | | public String name;
|
| | | public String description;
|
| | | public String owner;
|
| | | public String group;
|
| | | public Date lastChange;
|
| | | public boolean hasCommits;
|
| | | public boolean showRemoteBranches;
|
| | | public boolean useTickets;
|
| | | public boolean useDocs;
|
| | | public boolean useRestrictedAccess;
|
| | |
|
| | | public RepositoryModel() {
|
| | | |
| | | }
|
| | | |
| | | public RepositoryModel(String name, String description, String owner, Date lastchange) {
|
| | | this.name = name;
|
| | | this.description = description;
|