DESKTOPAPP-112: Added folderChange variable to SyncService Changes Model (#62)

Co-authored-by: Simona Carp <simona.carp@ness.com>
This commit is contained in:
Simona C
2020-06-04 10:55:16 +03:00
committed by GitHub
parent 361e6b0221
commit d9293fff27

View File

@@ -56,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
"async": false, "async": false,
"authority": null, "authority": null,
"cascade": false "cascade": false
"folderChange": false
} }
] ]
*/ */
@@ -148,6 +149,9 @@ public class RestSyncSetChangesModel extends TestModel
@JsonProperty(required = true) @JsonProperty(required = true)
private int numberOfSecondaryAssocs; private int numberOfSecondaryAssocs;
@JsonProperty(required = true)
private boolean folderChange;
public Boolean getConflict() public Boolean getConflict()
@@ -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;
}
} }