diff --git a/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/model/RestPersonFavoritesModel.java b/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/model/RestPersonFavoritesModel.java index 7643872eec..9969f9aadb 100644 --- a/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/model/RestPersonFavoritesModel.java +++ b/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/model/RestPersonFavoritesModel.java @@ -36,22 +36,22 @@ public class RestPersonFavoritesModel extends TestModel implements IRestModel aspectNames; private List allowableOperations; - + private RestTargetModel target; public RestPersonFavoritesModel() - { - } + {} public RestPersonFavoritesModel(String targetGuid, String createdAt) { @@ -69,7 +69,7 @@ public class RestPersonFavoritesModel extends TestModel implements IRestModel getAllowableOperations() { + public List getAspectNames() + { + return aspectNames; + } + + public void setAspectNames(List aspectNames) + { + this.aspectNames = aspectNames; + } + + public List getAllowableOperations() + { return allowableOperations; } - public void setAllowableOperations(List allowableOperations) { + public void setAllowableOperations(List allowableOperations) + { this.allowableOperations = allowableOperations; } }