Added inherited folder type

This commit is contained in:
M66B
2022-08-07 15:27:17 +02:00
parent 9fabfaf978
commit af74fe7744
11 changed files with 2833 additions and 13 deletions

View File

@@ -45,6 +45,7 @@ public class TupleMessageEx extends EntityMessage {
public Integer folderColor;
public String folderDisplay;
public String folderType;
public String folderInheritedType;
public boolean folderUnified;
public boolean folderReadOnly;
public String identityName;
@@ -150,6 +151,7 @@ public class TupleMessageEx extends EntityMessage {
this.folderName.equals(other.folderName) &&
Objects.equals(this.folderDisplay, other.folderDisplay) &&
this.folderType.equals(other.folderType) &&
Objects.equals(this.folderInheritedType, other.folderInheritedType) &&
this.folderUnified == other.folderUnified &&
this.folderReadOnly == other.folderReadOnly &&
Objects.equals(this.identityName, other.identityName) &&