mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
MNT-24637 Include aspectNames in TAS model.
This commit is contained in:
@@ -45,13 +45,13 @@ public class RestPersonFavoritesModel extends TestModel implements IRestModel<Re
|
|||||||
|
|
||||||
private String targetGuid;
|
private String targetGuid;
|
||||||
private String createdAt;
|
private String createdAt;
|
||||||
|
private List<String> aspectNames;
|
||||||
private List<String> allowableOperations;
|
private List<String> allowableOperations;
|
||||||
|
|
||||||
private RestTargetModel target;
|
private RestTargetModel target;
|
||||||
|
|
||||||
public RestPersonFavoritesModel()
|
public RestPersonFavoritesModel()
|
||||||
{
|
{}
|
||||||
}
|
|
||||||
|
|
||||||
public RestPersonFavoritesModel(String targetGuid, String createdAt)
|
public RestPersonFavoritesModel(String targetGuid, String createdAt)
|
||||||
{
|
{
|
||||||
@@ -90,11 +90,23 @@ public class RestPersonFavoritesModel extends TestModel implements IRestModel<Re
|
|||||||
this.createdAt = createdAt;
|
this.createdAt = createdAt;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<String> getAllowableOperations() {
|
public List<String> getAspectNames()
|
||||||
|
{
|
||||||
|
return aspectNames;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAspectNames(List<String> aspectNames)
|
||||||
|
{
|
||||||
|
this.aspectNames = aspectNames;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<String> getAllowableOperations()
|
||||||
|
{
|
||||||
return allowableOperations;
|
return allowableOperations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAllowableOperations(List<String> allowableOperations) {
|
public void setAllowableOperations(List<String> allowableOperations)
|
||||||
|
{
|
||||||
this.allowableOperations = allowableOperations;
|
this.allowableOperations = allowableOperations;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user