mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +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,
|
"async": false,
|
||||||
"authority": null,
|
"authority": null,
|
||||||
"cascade": false
|
"cascade": false
|
||||||
|
"folderChange": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
*/
|
*/
|
||||||
@@ -147,6 +148,9 @@ public class RestSyncSetChangesModel extends TestModel
|
|||||||
|
|
||||||
@JsonProperty(required = true)
|
@JsonProperty(required = true)
|
||||||
private int numberOfSecondaryAssocs;
|
private int numberOfSecondaryAssocs;
|
||||||
|
|
||||||
|
@JsonProperty(required = true)
|
||||||
|
private boolean folderChange;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -294,4 +298,12 @@ public class RestSyncSetChangesModel extends TestModel
|
|||||||
{
|
{
|
||||||
this.numberOfSecondaryAssocs = numberOfSecondaryAssocs;
|
this.numberOfSecondaryAssocs = numberOfSecondaryAssocs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isFolderChange() {
|
||||||
|
return folderChange;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFolderChange(boolean folderChange) {
|
||||||
|
this.folderChange = folderChange;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user