added aspectNames and nodeType properties

This commit is contained in:
cagache
2018-08-21 14:23:38 +03:00
parent 75e3f55c3e
commit 0fa2d7d420

View File

@@ -26,6 +26,8 @@
*/
package org.alfresco.rest.rm.community.model.common;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
@@ -50,4 +52,10 @@ public class IdNamePair
@JsonProperty (required = true)
private String name;
@JsonProperty (required = true)
private List<String> aspectNames;
@JsonProperty (required = true)
private String nodeType;
}