| | |
| | | public boolean useTickets;
|
| | | public boolean useDocs;
|
| | | public AccessRestrictionType accessRestriction;
|
| | | public boolean isFrozen;
|
| | |
|
| | | public RepositoryModel() {
|
| | |
|
| | | this.name = "";
|
| | | this.description = "";
|
| | | this.owner = "";
|
| | | this.lastChange = new Date(0);
|
| | | this.accessRestriction = AccessRestrictionType.NONE;
|
| | | }
|
| | |
|
| | | public RepositoryModel(String name, String description, String owner, Date lastchange) {
|
| | |
| | | this.description = description;
|
| | | this.owner = owner;
|
| | | this.lastChange = lastchange;
|
| | | this.accessRestriction = AccessRestrictionType.NONE;
|
| | | }
|
| | | } |