From 3b027c6c3637f6a3de33cc9cfcf265fb057e296e Mon Sep 17 00:00:00 2001 From: Tom Page Date: Fri, 4 Oct 2024 15:45:54 +0100 Subject: [PATCH] MNT-24637 Include aspectNames in TAS model. --- .../rest/model/RestPersonFavoritesModel.java | 32 +++++++++++++------ 1 file changed, 22 insertions(+), 10 deletions(-) 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; } }