mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
added missing quota and quotaUsed properties (#53)
This commit is contained in:
@@ -71,6 +71,8 @@ public class RestPersonModel extends TestModel implements IModelAssertion<RestPe
|
|||||||
private String userStatus;
|
private String userStatus;
|
||||||
private String password;
|
private String password;
|
||||||
private Object properties;
|
private Object properties;
|
||||||
|
private String quotaUsed;
|
||||||
|
private String quota;
|
||||||
private Map<String, Boolean> capabilities;
|
private Map<String, Boolean> capabilities;
|
||||||
|
|
||||||
public RestPersonModel()
|
public RestPersonModel()
|
||||||
@@ -319,7 +321,25 @@ public class RestPersonModel extends TestModel implements IModelAssertion<RestPe
|
|||||||
this.displayName = displayName;
|
this.displayName = displayName;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public String getQuotaUsed() {
|
||||||
|
return quotaUsed;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void setQuotaUsed(String quotaUsed) {
|
||||||
|
this.quotaUsed = quotaUsed;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getQuota() {
|
||||||
|
return quota;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQuota(String quota) {
|
||||||
|
this.quota = quota;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
* Generate a PersonModel with random values for all existing fields excluding fields specified as ingnoredFields
|
* Generate a PersonModel with random values for all existing fields excluding fields specified as ingnoredFields
|
||||||
*
|
*
|
||||||
* @param ignoredFields field to be excluded when generating a random model
|
* @param ignoredFields field to be excluded when generating a random model
|
||||||
|
Reference in New Issue
Block a user