mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
DESKTOPAPP-112: Added folderChange variable to SyncService Changes Model (#62)
Co-authored-by: Simona Carp <simona.carp@ness.com>
This commit is contained in:
@@ -56,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
"async": false,
|
||||
"authority": null,
|
||||
"cascade": false
|
||||
"folderChange": false
|
||||
}
|
||||
]
|
||||
*/
|
||||
@@ -147,6 +148,9 @@ public class RestSyncSetChangesModel extends TestModel
|
||||
|
||||
@JsonProperty(required = true)
|
||||
private int numberOfSecondaryAssocs;
|
||||
|
||||
@JsonProperty(required = true)
|
||||
private boolean folderChange;
|
||||
|
||||
|
||||
|
||||
@@ -294,4 +298,12 @@ public class RestSyncSetChangesModel extends TestModel
|
||||
{
|
||||
this.numberOfSecondaryAssocs = numberOfSecondaryAssocs;
|
||||
}
|
||||
|
||||
public boolean isFolderChange() {
|
||||
return folderChange;
|
||||
}
|
||||
|
||||
public void setFolderChange(boolean folderChange) {
|
||||
this.folderChange = folderChange;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user