remove default constructors (generated by the compiler) and simplify if-statements of equals-methods

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2021-04-29 15:44:56 +02:00
parent ad9a1e804d
commit b350a4c86e
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
112 changed files with 232 additions and 757 deletions

View File

@ -60,9 +60,6 @@ public class BrowserFile {
public String permissions; public String permissions;
private boolean isAllowedToReShare = false; private boolean isAllowedToReShare = false;
public BrowserFile() {
}
public static BrowserFile getModelFromResponse(Response response, String remotePath) { public static BrowserFile getModelFromResponse(Response response, String remotePath) {
BrowserFile browserFile = new BrowserFile(); BrowserFile browserFile = new BrowserFile();
browserFile.setPath(Uri.decode(remotePath)); browserFile.setPath(Uri.decode(remotePath));
@ -273,10 +270,8 @@ public class BrowserFile {
if (this$permissions == null ? other$permissions != null : !this$permissions.equals(other$permissions)) { if (this$permissions == null ? other$permissions != null : !this$permissions.equals(other$permissions)) {
return false; return false;
} }
if (this.isAllowedToReShare() != other.isAllowedToReShare()) {
return false; return this.isAllowedToReShare() == other.isAllowedToReShare();
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -26,9 +26,6 @@ public class DavResponse {
public Response response; public Response response;
public Object data; public Object data;
public DavResponse() {
}
public Response getResponse() { public Response getResponse() {
return this.response; return this.response;
} }
@ -63,10 +60,8 @@ public class DavResponse {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -91,10 +91,8 @@ public class BottomSheetLockEvent {
if (this.isCancel() != other.isCancel()) { if (this.isCancel() != other.isCancel()) {
return false; return false;
} }
if (this.isDismissView() != other.isDismissView()) {
return false; return this.isDismissView() == other.isDismissView();
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -21,9 +21,6 @@
package com.nextcloud.talk.events; package com.nextcloud.talk.events;
public class ConfigurationChangeEvent { public class ConfigurationChangeEvent {
public ConfigurationChangeEvent() {
}
public boolean equals(final Object o) { public boolean equals(final Object o) {
if (o == this) { if (o == this) {
return true; return true;
@ -32,10 +29,8 @@ public class ConfigurationChangeEvent {
return false; return false;
} }
final ConfigurationChangeEvent other = (ConfigurationChangeEvent) o; final ConfigurationChangeEvent other = (ConfigurationChangeEvent) o;
if (!other.canEqual((Object) this)) {
return false; return other.canEqual((Object) this);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {
@ -43,8 +38,7 @@ public class ConfigurationChangeEvent {
} }
public int hashCode() { public int hashCode() {
int result = 1; return 1;
return result;
} }
public String toString() { public String toString() {

View File

@ -74,10 +74,8 @@ public class EventStatus {
if (this$eventType == null ? other$eventType != null : !this$eventType.equals(other$eventType)) { if (this$eventType == null ? other$eventType != null : !this$eventType.equals(other$eventType)) {
return false; return false;
} }
if (this.isAllGood() != other.isAllGood()) {
return false; return this.isAllGood() == other.isAllGood();
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -70,10 +70,8 @@ public class MediaStreamEvent {
} }
final Object this$videoStreamType = this.getVideoStreamType(); final Object this$videoStreamType = this.getVideoStreamType();
final Object other$videoStreamType = other.getVideoStreamType(); final Object other$videoStreamType = other.getVideoStreamType();
if (this$videoStreamType == null ? other$videoStreamType != null : !this$videoStreamType.equals(other$videoStreamType)) {
return false; return this$videoStreamType == null ? other$videoStreamType == null : this$videoStreamType.equals(other$videoStreamType);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -46,10 +46,8 @@ public class MoreMenuClickEvent {
} }
final Object this$conversation = this.getConversation(); final Object this$conversation = this.getConversation();
final Object other$conversation = other.getConversation(); final Object other$conversation = other.getConversation();
if (this$conversation == null ? other$conversation != null : !this$conversation.equals(other$conversation)) {
return false; return this$conversation == null ? other$conversation == null : this$conversation.equals(other$conversation);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -21,6 +21,12 @@
package com.nextcloud.talk.events; package com.nextcloud.talk.events;
public class NetworkEvent { public class NetworkEvent {
private final NetworkConnectionEvent networkConnectionEvent;
public NetworkEvent(NetworkConnectionEvent networkConnectionEvent) {
this.networkConnectionEvent = networkConnectionEvent;
}
public NetworkConnectionEvent getNetworkConnectionEvent() { public NetworkConnectionEvent getNetworkConnectionEvent() {
return this.networkConnectionEvent; return this.networkConnectionEvent;
} }
@ -38,10 +44,8 @@ public class NetworkEvent {
} }
final Object this$networkConnectionEvent = this.getNetworkConnectionEvent(); final Object this$networkConnectionEvent = this.getNetworkConnectionEvent();
final Object other$networkConnectionEvent = other.getNetworkConnectionEvent(); final Object other$networkConnectionEvent = other.getNetworkConnectionEvent();
if (this$networkConnectionEvent == null ? other$networkConnectionEvent != null : !this$networkConnectionEvent.equals(other$networkConnectionEvent)) {
return false; return this$networkConnectionEvent == null ? other$networkConnectionEvent == null : this$networkConnectionEvent.equals(other$networkConnectionEvent);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {
@ -63,10 +67,4 @@ public class NetworkEvent {
public enum NetworkConnectionEvent { public enum NetworkConnectionEvent {
NETWORK_CONNECTED, NETWORK_DISCONNECTED NETWORK_CONNECTED, NETWORK_DISCONNECTED
} }
private final NetworkConnectionEvent networkConnectionEvent;
public NetworkEvent(NetworkConnectionEvent networkConnectionEvent) {
this.networkConnectionEvent = networkConnectionEvent;
}
} }

View File

@ -91,10 +91,8 @@ public class PeerConnectionEvent {
} }
final Object this$videoStreamType = this.getVideoStreamType(); final Object this$videoStreamType = this.getVideoStreamType();
final Object other$videoStreamType = other.getVideoStreamType(); final Object other$videoStreamType = other.getVideoStreamType();
if (this$videoStreamType == null ? other$videoStreamType != null : !this$videoStreamType.equals(other$videoStreamType)) {
return false; return this$videoStreamType == null ? other$videoStreamType == null : this$videoStreamType.equals(other$videoStreamType);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -99,10 +99,8 @@ public class SessionDescriptionSendEvent {
} }
final Object this$videoStreamType = this.getVideoStreamType(); final Object this$videoStreamType = this.getVideoStreamType();
final Object other$videoStreamType = other.getVideoStreamType(); final Object other$videoStreamType = other.getVideoStreamType();
if (this$videoStreamType == null ? other$videoStreamType != null : !this$videoStreamType.equals(other$videoStreamType)) {
return false; return this$videoStreamType == null ? other$videoStreamType == null : this$videoStreamType.equals(other$videoStreamType);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -44,10 +44,8 @@ public class UserMentionClickEvent {
} }
final Object this$userId = this.getUserId(); final Object this$userId = this.getUserId();
final Object other$userId = other.getUserId(); final Object other$userId = other.getUserId();
if (this$userId == null ? other$userId != null : !this$userId.equals(other$userId)) {
return false; return this$userId == null ? other$userId == null : this$userId.equals(other$userId);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -61,10 +61,8 @@ public class WebSocketCommunicationEvent {
} }
final Object this$hashMap = this.getHashMap(); final Object this$hashMap = this.getHashMap();
final Object other$hashMap = other.getHashMap(); final Object other$hashMap = other.getHashMap();
if (this$hashMap == null ? other$hashMap != null : !this$hashMap.equals(other$hashMap)) {
return false; return this$hashMap == null ? other$hashMap == null : this$hashMap.equals(other$hashMap);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -33,9 +33,6 @@ public class ExternalSignalingServer {
@JsonField(name = "externalSignalingTicket") @JsonField(name = "externalSignalingTicket")
String externalSignalingTicket; String externalSignalingTicket;
public ExternalSignalingServer() {
}
public String getExternalSignalingServer() { public String getExternalSignalingServer() {
return this.externalSignalingServer; return this.externalSignalingServer;
} }
@ -70,10 +67,8 @@ public class ExternalSignalingServer {
} }
final Object this$externalSignalingTicket = this.getExternalSignalingTicket(); final Object this$externalSignalingTicket = this.getExternalSignalingTicket();
final Object other$externalSignalingTicket = other.getExternalSignalingTicket(); final Object other$externalSignalingTicket = other.getExternalSignalingTicket();
if (this$externalSignalingTicket == null ? other$externalSignalingTicket != null : !this$externalSignalingTicket.equals(other$externalSignalingTicket)) {
return false; return this$externalSignalingTicket == null ? other$externalSignalingTicket == null : this$externalSignalingTicket.equals(other$externalSignalingTicket);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -82,10 +82,8 @@ public class ImportAccount {
} }
final Object this$baseUrl = this.getBaseUrl(); final Object this$baseUrl = this.getBaseUrl();
final Object other$baseUrl = other.getBaseUrl(); final Object other$baseUrl = other.getBaseUrl();
if (this$baseUrl == null ? other$baseUrl != null : !this$baseUrl.equals(other$baseUrl)) {
return false; return this$baseUrl == null ? other$baseUrl == null : this$baseUrl.equals(other$baseUrl);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -28,9 +28,6 @@ public class LoginData {
String username; String username;
String token; String token;
public LoginData() {
}
public String getServerUrl() { public String getServerUrl() {
return this.serverUrl; return this.serverUrl;
} }
@ -78,10 +75,8 @@ public class LoginData {
} }
final Object this$token = this.getToken(); final Object this$token = this.getToken();
final Object other$token = other.getToken(); final Object other$token = other.getToken();
if (this$token == null ? other$token != null : !this$token.equals(other$token)) {
return false; return this$token == null ? other$token == null : this$token.equals(other$token);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -28,9 +28,6 @@ public class RetrofitBucket {
public String url; public String url;
public Map<String, String> queryMap; public Map<String, String> queryMap;
public RetrofitBucket() {
}
public String getUrl() { public String getUrl() {
return this.url; return this.url;
} }
@ -65,10 +62,8 @@ public class RetrofitBucket {
} }
final Object this$queryMap = this.getQueryMap(); final Object this$queryMap = this.getQueryMap();
final Object other$queryMap = other.getQueryMap(); final Object other$queryMap = other.getQueryMap();
if (this$queryMap == null ? other$queryMap != null : !this$queryMap.equals(other$queryMap)) {
return false; return this$queryMap == null ? other$queryMap == null : this$queryMap.equals(other$queryMap);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -39,9 +39,6 @@ public class RingtoneSettings {
@JsonField(name = "ringtoneName") @JsonField(name = "ringtoneName")
public String ringtoneName; public String ringtoneName;
public RingtoneSettings() {
}
@Nullable @Nullable
public Uri getRingtoneUri() { public Uri getRingtoneUri() {
return this.ringtoneUri; return this.ringtoneUri;
@ -77,10 +74,8 @@ public class RingtoneSettings {
} }
final Object this$ringtoneName = this.getRingtoneName(); final Object this$ringtoneName = this.getRingtoneName();
final Object other$ringtoneName = other.getRingtoneName(); final Object other$ringtoneName = other.getRingtoneName();
if (this$ringtoneName == null ? other$ringtoneName != null : !this$ringtoneName.equals(other$ringtoneName)) {
return false; return this$ringtoneName == null ? other$ringtoneName == null : this$ringtoneName.equals(other$ringtoneName);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -30,9 +30,6 @@ public class SignatureVerification {
public boolean signatureValid; public boolean signatureValid;
public UserEntity userEntity; public UserEntity userEntity;
public SignatureVerification() {
}
public boolean isSignatureValid() { public boolean isSignatureValid() {
return this.signatureValid; return this.signatureValid;
} }
@ -65,10 +62,8 @@ public class SignatureVerification {
} }
final Object this$userEntity = this.getUserEntity(); final Object this$userEntity = this.getUserEntity();
final Object other$userEntity = other.getUserEntity(); final Object other$userEntity = other.getUserEntity();
if (this$userEntity == null ? other$userEntity != null : !this$userEntity.equals(other$userEntity)) {
return false; return this$userEntity == null ? other$userEntity == null : this$userEntity.equals(other$userEntity);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -34,9 +34,6 @@ public class AutocompleteOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
List<AutocompleteUser> data; List<AutocompleteUser> data;
public AutocompleteOCS() {
}
public List<AutocompleteUser> getData() { public List<AutocompleteUser> getData() {
return this.data; return this.data;
} }
@ -58,10 +55,8 @@ public class AutocompleteOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class AutocompleteOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
AutocompleteOCS ocs; AutocompleteOCS ocs;
public AutocompleteOverall() {
}
public AutocompleteOCS getOcs() { public AutocompleteOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class AutocompleteOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -37,9 +37,6 @@ public class AutocompleteUser {
@JsonField(name = "source") @JsonField(name = "source")
String source; String source;
public AutocompleteUser() {
}
public String getId() { public String getId() {
return this.id; return this.id;
} }
@ -87,10 +84,7 @@ public class AutocompleteUser {
} }
final Object this$source = this.getSource(); final Object this$source = this.getSource();
final Object other$source = other.getSource(); final Object other$source = other.getSource();
if (this$source == null ? other$source != null : !this$source.equals(other$source)) { return this$source == null ? other$source == null : this$source.equals(other$source);
return false;
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -46,9 +46,6 @@ public class Capabilities {
@JsonField(name = "provisioning_api") @JsonField(name = "provisioning_api")
ProvisioningCapability provisioningCapability; ProvisioningCapability provisioningCapability;
public Capabilities() {
}
public SpreedCapability getSpreedCapability() { public SpreedCapability getSpreedCapability() {
return this.spreedCapability; return this.spreedCapability;
} }
@ -122,10 +119,8 @@ public class Capabilities {
} }
final Object this$provisioningCapability = this.getProvisioningCapability(); final Object this$provisioningCapability = this.getProvisioningCapability();
final Object other$provisioningCapability = other.getProvisioningCapability(); final Object other$provisioningCapability = other.getProvisioningCapability();
if (this$provisioningCapability == null ? other$provisioningCapability != null : !this$provisioningCapability.equals(other$provisioningCapability)) {
return false; return this$provisioningCapability == null ? other$provisioningCapability == null : this$provisioningCapability.equals(other$provisioningCapability);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class CapabilitiesList {
@JsonField(name = "capabilities") @JsonField(name = "capabilities")
Capabilities capabilities; Capabilities capabilities;
public CapabilitiesList() {
}
public Capabilities getCapabilities() { public Capabilities getCapabilities() {
return this.capabilities; return this.capabilities;
} }
@ -55,10 +52,8 @@ public class CapabilitiesList {
} }
final Object this$capabilities = this.getCapabilities(); final Object this$capabilities = this.getCapabilities();
final Object other$capabilities = other.getCapabilities(); final Object other$capabilities = other.getCapabilities();
if (this$capabilities == null ? other$capabilities != null : !this$capabilities.equals(other$capabilities)) {
return false; return this$capabilities == null ? other$capabilities == null : this$capabilities.equals(other$capabilities);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class CapabilitiesOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
CapabilitiesList data; CapabilitiesList data;
public CapabilitiesOCS() {
}
public CapabilitiesList getData() { public CapabilitiesList getData() {
return this.data; return this.data;
} }
@ -55,10 +52,8 @@ public class CapabilitiesOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -30,9 +30,6 @@ public class CapabilitiesOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
CapabilitiesOCS ocs; CapabilitiesOCS ocs;
public CapabilitiesOverall() {
}
public CapabilitiesOCS getOcs() { public CapabilitiesOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -54,10 +51,8 @@ public class CapabilitiesOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -33,9 +33,6 @@ public class NotificationsCapability {
@JsonField(name = "ocs-endpoints") @JsonField(name = "ocs-endpoints")
List<String> features; List<String> features;
public NotificationsCapability() {
}
public List<String> getFeatures() { public List<String> getFeatures() {
return this.features; return this.features;
} }
@ -57,10 +54,8 @@ public class NotificationsCapability {
} }
final Object this$features = this.getFeatures(); final Object this$features = this.getFeatures();
final Object other$features = other.getFeatures(); final Object other$features = other.getFeatures();
if (this$features == null ? other$features != null : !this$features.equals(other$features)) {
return false; return this$features == null ? other$features == null : this$features.equals(other$features);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class ProvisioningCapability {
@JsonField(name = "AccountPropertyScopesVersion") @JsonField(name = "AccountPropertyScopesVersion")
Integer accountPropertyScopesVersion; Integer accountPropertyScopesVersion;
public ProvisioningCapability() {
}
public Integer getAccountPropertyScopesVersion() { public Integer getAccountPropertyScopesVersion() {
return this.accountPropertyScopesVersion; return this.accountPropertyScopesVersion;
} }
@ -55,10 +52,8 @@ public class ProvisioningCapability {
} }
final Object this$accountPropertyScopesVersion = this.getAccountPropertyScopesVersion(); final Object this$accountPropertyScopesVersion = this.getAccountPropertyScopesVersion();
final Object other$accountPropertyScopesVersion = other.getAccountPropertyScopesVersion(); final Object other$accountPropertyScopesVersion = other.getAccountPropertyScopesVersion();
if (this$accountPropertyScopesVersion == null ? other$accountPropertyScopesVersion != null : !this$accountPropertyScopesVersion.equals(other$accountPropertyScopesVersion)) {
return false; return this$accountPropertyScopesVersion == null ? other$accountPropertyScopesVersion == null : this$accountPropertyScopesVersion.equals(other$accountPropertyScopesVersion);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -37,9 +37,6 @@ public class SpreedCapability {
@JsonField(name = "config") @JsonField(name = "config")
HashMap<String, HashMap<String, String>> config; HashMap<String, HashMap<String, String>> config;
public SpreedCapability() {
}
public List<String> getFeatures() { public List<String> getFeatures() {
return this.features; return this.features;
} }
@ -74,10 +71,8 @@ public class SpreedCapability {
} }
final Object this$config = this.getConfig(); final Object this$config = this.getConfig();
final Object other$config = other.getConfig(); final Object other$config = other.getConfig();
if (this$config == null ? other$config != null : !this$config.equals(other$config)) {
return false; return this$config == null ? other$config == null : this$config.equals(other$config);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -58,9 +58,6 @@ public class ThemingCapability {
@JsonField(name = "background-default") @JsonField(name = "background-default")
boolean backgroundDefault; boolean backgroundDefault;
public ThemingCapability() {
}
public String getName() { public String getName() {
return this.name; return this.name;
} }
@ -195,10 +192,8 @@ public class ThemingCapability {
if (this.isBackgroundPlain() != other.isBackgroundPlain()) { if (this.isBackgroundPlain() != other.isBackgroundPlain()) {
return false; return false;
} }
if (this.isBackgroundDefault() != other.isBackgroundDefault()) {
return false; return this.isBackgroundDefault() == other.isBackgroundDefault();
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -91,9 +91,6 @@ public class ChatMessage implements IMessage, MessageContentType, MessageContent
MessageType.SYSTEM_MESSAGE, MessageType.SINGLE_LINK_VIDEO_MESSAGE, MessageType.SYSTEM_MESSAGE, MessageType.SINGLE_LINK_VIDEO_MESSAGE,
MessageType.SINGLE_LINK_AUDIO_MESSAGE, MessageType.SINGLE_LINK_MESSAGE); MessageType.SINGLE_LINK_AUDIO_MESSAGE, MessageType.SINGLE_LINK_MESSAGE);
public ChatMessage() {
}
private boolean hasFileAttachment() { private boolean hasFileAttachment() {
if (messageParameters != null && messageParameters.size() > 0) { if (messageParameters != null && messageParameters.size() > 0) {
for (String key : messageParameters.keySet()) { for (String key : messageParameters.keySet()) {
@ -487,10 +484,8 @@ public class ChatMessage implements IMessage, MessageContentType, MessageContent
} }
final Object this$messageTypesToIgnore = this.getMessageTypesToIgnore(); final Object this$messageTypesToIgnore = this.getMessageTypesToIgnore();
final Object other$messageTypesToIgnore = other.getMessageTypesToIgnore(); final Object other$messageTypesToIgnore = other.getMessageTypesToIgnore();
if (this$messageTypesToIgnore == null ? other$messageTypesToIgnore != null : !this$messageTypesToIgnore.equals(other$messageTypesToIgnore)) {
return false; return this$messageTypesToIgnore == null ? other$messageTypesToIgnore == null : this$messageTypesToIgnore.equals(other$messageTypesToIgnore);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -33,9 +33,6 @@ public class ChatOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
public List<ChatMessage> data; public List<ChatMessage> data;
public ChatOCS() {
}
public List<ChatMessage> getData() { public List<ChatMessage> getData() {
return this.data; return this.data;
} }
@ -57,10 +54,8 @@ public class ChatOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class ChatOCSSingleMessage extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
public ChatMessage data; public ChatMessage data;
public ChatOCSSingleMessage() {
}
public ChatMessage getData() { public ChatMessage getData() {
return this.data; return this.data;
} }
@ -55,10 +52,8 @@ public class ChatOCSSingleMessage extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class ChatOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
public ChatOCS ocs; public ChatOCS ocs;
public ChatOverall() {
}
public ChatOCS getOcs() { public ChatOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class ChatOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class ChatOverallSingleMessage {
@JsonField(name = "ocs") @JsonField(name = "ocs")
public ChatOCSSingleMessage ocs; public ChatOCSSingleMessage ocs;
public ChatOverallSingleMessage() {
}
public ChatOCSSingleMessage getOcs() { public ChatOCSSingleMessage getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class ChatOverallSingleMessage {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -94,9 +94,6 @@ public class Conversation {
@JsonField(name = "callFlag") @JsonField(name = "callFlag")
public int callFlag; public int callFlag;
public Conversation() {
}
public boolean isPublic() { public boolean isPublic() {
return (ConversationType.ROOM_PUBLIC_CALL.equals(type)); return (ConversationType.ROOM_PUBLIC_CALL.equals(type));
} }
@ -107,7 +104,6 @@ public class Conversation {
Participant.ParticipantType.USER_FOLLOWING_LINK.equals(participantType)); Participant.ParticipantType.USER_FOLLOWING_LINK.equals(participantType));
} }
private boolean isLockedOneToOne(UserEntity conversationUser) { private boolean isLockedOneToOne(UserEntity conversationUser) {
return (getType() == ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL && conversationUser.hasSpreedFeatureCapability("locked-one-to-one-rooms")); return (getType() == ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL && conversationUser.hasSpreedFeatureCapability("locked-one-to-one-rooms"));
} }
@ -135,8 +131,8 @@ public class Conversation {
} }
public boolean canLeave(UserEntity conversationUser) { public boolean canLeave(UserEntity conversationUser) {
return !canModerate(conversationUser) || (getType() != ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL && getParticipants().size() > 1); return !canModerate(conversationUser) ||
(getType() != ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL && getParticipants().size() > 1);
} }
public String getDeleteWarningMessage() { public String getDeleteWarningMessage() {
@ -477,10 +473,8 @@ public class Conversation {
if (this.getLastReadMessage() != other.getLastReadMessage()) { if (this.getLastReadMessage() != other.getLastReadMessage()) {
return false; return false;
} }
if (this.getCallFlag() != other.getCallFlag()) {
return false; return this.getCallFlag() == other.getCallFlag();
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -29,9 +29,6 @@ public class RoomOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
public Conversation data; public Conversation data;
public RoomOCS() {
}
public Conversation getData() { public Conversation getData() {
return this.data; return this.data;
} }
@ -53,10 +50,8 @@ public class RoomOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -28,9 +28,6 @@ public class RoomOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
public RoomOCS ocs; public RoomOCS ocs;
public RoomOverall() {
}
public RoomOCS getOcs() { public RoomOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -52,10 +49,8 @@ public class RoomOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -34,9 +34,6 @@ public class RoomsOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
public List<Conversation> data; public List<Conversation> data;
public RoomsOCS() {
}
public List<Conversation> getData() { public List<Conversation> getData() {
return this.data; return this.data;
} }
@ -58,10 +55,8 @@ public class RoomsOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class RoomsOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
public RoomsOCS ocs; public RoomsOCS ocs;
public RoomsOverall() {
}
public RoomsOCS getOcs() { public RoomsOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class RoomsOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -37,9 +37,6 @@ public class GenericMeta {
@JsonField(name = "message") @JsonField(name = "message")
public String message; public String message;
public GenericMeta() {
}
public String getStatus() { public String getStatus() {
return this.status; return this.status;
} }
@ -85,10 +82,8 @@ public class GenericMeta {
} }
final Object this$message = this.getMessage(); final Object this$message = this.getMessage();
final Object other$message = other.getMessage(); final Object other$message = other.getMessage();
if (this$message == null ? other$message != null : !this$message.equals(other$message)) {
return false; return this$message == null ? other$message == null : this$message.equals(other$message);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class GenericOCS {
@JsonField(name = "meta") @JsonField(name = "meta")
public GenericMeta meta; public GenericMeta meta;
public GenericOCS() {
}
public GenericMeta getMeta() { public GenericMeta getMeta() {
return this.meta; return this.meta;
} }
@ -55,10 +52,8 @@ public class GenericOCS {
} }
final Object this$meta = this.getMeta(); final Object this$meta = this.getMeta();
final Object other$meta = other.getMeta(); final Object other$meta = other.getMeta();
if (this$meta == null ? other$meta != null : !this$meta.equals(other$meta)) {
return false; return this$meta == null ? other$meta == null : this$meta.equals(other$meta);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class GenericOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
public GenericOCS ocs; public GenericOCS ocs;
public GenericOverall() {
}
public GenericOCS getOcs() { public GenericOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class GenericOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -49,9 +49,6 @@ public class Status {
@JsonField(name = "productname") @JsonField(name = "productname")
public String productName; public String productName;
public Status() {
}
public boolean isInstalled() { public boolean isInstalled() {
return this.installed; return this.installed;
} }
@ -145,10 +142,8 @@ public class Status {
} }
final Object this$productName = this.getProductName(); final Object this$productName = this.getProductName();
final Object other$productName = other.getProductName(); final Object other$productName = other.getProductName();
if (this$productName == null ? other$productName != null : !this$productName.equals(other$productName)) {
return false; return this$productName == null ? other$productName == null : this$productName.equals(other$productName);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -37,9 +37,6 @@ public class Mention {
@JsonField(name = "source") @JsonField(name = "source")
String source; String source;
public Mention() {
}
public String getId() { public String getId() {
return this.id; return this.id;
} }
@ -87,10 +84,8 @@ public class Mention {
} }
final Object this$source = this.getSource(); final Object this$source = this.getSource();
final Object other$source = other.getSource(); final Object other$source = other.getSource();
if (this$source == null ? other$source != null : !this$source.equals(other$source)) {
return false; return this$source == null ? other$source == null : this$source.equals(other$source);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -33,9 +33,6 @@ public class MentionOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
List<Mention> data; List<Mention> data;
public MentionOCS() {
}
public List<Mention> getData() { public List<Mention> getData() {
return this.data; return this.data;
} }
@ -57,10 +54,8 @@ public class MentionOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -30,9 +30,6 @@ public class MentionOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
MentionOCS ocs; MentionOCS ocs;
public MentionOverall() {
}
public MentionOCS getOcs() { public MentionOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -54,10 +51,8 @@ public class MentionOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -64,9 +64,6 @@ public class Notification {
@JsonField(name = "actions") @JsonField(name = "actions")
List<NotificationAction> actions; List<NotificationAction> actions;
public Notification() {
}
public String getIcon() { public String getIcon() {
return this.icon; return this.icon;
} }
@ -268,10 +265,8 @@ public class Notification {
} }
final Object this$actions = this.getActions(); final Object this$actions = this.getActions();
final Object other$actions = other.getActions(); final Object other$actions = other.getActions();
if (this$actions == null ? other$actions != null : !this$actions.equals(other$actions)) {
return false; return this$actions == null ? other$actions == null : this$actions.equals(other$actions);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -40,9 +40,6 @@ public class NotificationAction {
@JsonField(name = "primary") @JsonField(name = "primary")
boolean primary; boolean primary;
public NotificationAction() {
}
public String getLabel() { public String getLabel() {
return this.label; return this.label;
} }
@ -101,10 +98,8 @@ public class NotificationAction {
if (this$type == null ? other$type != null : !this$type.equals(other$type)) { if (this$type == null ? other$type != null : !this$type.equals(other$type)) {
return false; return false;
} }
if (this.isPrimary() != other.isPrimary()) {
return false; return this.isPrimary() == other.isPrimary();
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -32,9 +32,6 @@ public class NotificationOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
Notification notification; Notification notification;
public NotificationOCS() {
}
public Notification getNotification() { public Notification getNotification() {
return this.notification; return this.notification;
} }
@ -56,10 +53,8 @@ public class NotificationOCS extends GenericOCS {
} }
final Object this$notification = this.getNotification(); final Object this$notification = this.getNotification();
final Object other$notification = other.getNotification(); final Object other$notification = other.getNotification();
if (this$notification == null ? other$notification != null : !this$notification.equals(other$notification)) {
return false; return this$notification == null ? other$notification == null : this$notification.equals(other$notification);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -27,9 +27,6 @@ public class NotificationOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
NotificationOCS ocs; NotificationOCS ocs;
public NotificationOverall() {
}
public NotificationOCS getOcs() { public NotificationOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -51,10 +48,8 @@ public class NotificationOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -37,9 +37,6 @@ public class NotificationRichObject {
@JsonField(name = "name") @JsonField(name = "name")
String name; String name;
public NotificationRichObject() {
}
public String getLabel() { public String getLabel() {
return this.label; return this.label;
} }
@ -87,10 +84,8 @@ public class NotificationRichObject {
} }
final Object this$name = this.getName(); final Object this$name = this.getName();
final Object other$name = other.getName(); final Object other$name = other.getName();
if (this$name == null ? other$name != null : !this$name.equals(other$name)) {
return false; return this$name == null ? other$name == null : this$name.equals(other$name);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -34,9 +34,6 @@ public class NotificationsOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
List<Notification> notificationsList; List<Notification> notificationsList;
public NotificationsOCS() {
}
public List<Notification> getNotificationsList() { public List<Notification> getNotificationsList() {
return this.notificationsList; return this.notificationsList;
} }
@ -58,10 +55,8 @@ public class NotificationsOCS extends GenericOCS {
} }
final Object this$notificationsList = this.getNotificationsList(); final Object this$notificationsList = this.getNotificationsList();
final Object other$notificationsList = other.getNotificationsList(); final Object other$notificationsList = other.getNotificationsList();
if (this$notificationsList == null ? other$notificationsList != null : !this$notificationsList.equals(other$notificationsList)) {
return false; return this$notificationsList == null ? other$notificationsList == null : this$notificationsList.equals(other$notificationsList);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -27,9 +27,6 @@ public class NotificationsOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
NotificationsOCS ocs; NotificationsOCS ocs;
public NotificationsOverall() {
}
public NotificationsOCS getOcs() { public NotificationsOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -51,10 +48,8 @@ public class NotificationsOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -29,9 +29,6 @@ public class AddParticipantOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
RoomsOCS ocs; RoomsOCS ocs;
public AddParticipantOverall() {
}
public RoomsOCS getOcs() { public RoomsOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -53,10 +50,8 @@ public class AddParticipantOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -59,10 +59,6 @@ public class Participant {
public boolean selected; public boolean selected;
public Participant() {
}
public ParticipantFlags getParticipantFlags() { public ParticipantFlags getParticipantFlags() {
ParticipantFlags participantFlags = ParticipantFlags.NOT_IN_CALL; ParticipantFlags participantFlags = ParticipantFlags.NOT_IN_CALL;
if (inCall != null) { if (inCall != null) {
@ -212,10 +208,8 @@ public class Participant {
if (this$source == null ? other$source != null : !this$source.equals(other$source)) { if (this$source == null ? other$source != null : !this$source.equals(other$source)) {
return false; return false;
} }
if (this.isSelected() != other.isSelected()) {
return false; return this.isSelected() == other.isSelected();
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -34,9 +34,6 @@ public class ParticipantsOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
public List<Participant> data; public List<Participant> data;
public ParticipantsOCS() {
}
public List<Participant> getData() { public List<Participant> getData() {
return this.data; return this.data;
} }
@ -58,10 +55,8 @@ public class ParticipantsOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class ParticipantsOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
public ParticipantsOCS ocs; public ParticipantsOCS ocs;
public ParticipantsOverall() {
}
public ParticipantsOCS getOcs() { public ParticipantsOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class ParticipantsOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -59,9 +59,6 @@ public class DecryptedPushMessage {
@JsonIgnore @JsonIgnore
public long timestamp; public long timestamp;
public DecryptedPushMessage() {
}
public String getApp() { public String getApp() {
return this.app; return this.app;
} }
@ -192,10 +189,8 @@ public class DecryptedPushMessage {
if (this$text == null ? other$text != null : !this$text.equals(other$text)) { if (this$text == null ? other$text != null : !this$text.equals(other$text)) {
return false; return false;
} }
if (this.getTimestamp() != other.getTimestamp()) {
return false; return this.getTimestamp() == other.getTimestamp();
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -37,9 +37,6 @@ public class NotificationUser {
@JsonField(name = "name") @JsonField(name = "name")
String name; String name;
public NotificationUser() {
}
public String getType() { public String getType() {
return this.type; return this.type;
} }
@ -87,10 +84,8 @@ public class NotificationUser {
} }
final Object this$name = this.getName(); final Object this$name = this.getName();
final Object other$name = other.getName(); final Object other$name = other.getName();
if (this$name == null ? other$name != null : !this$name.equals(other$name)) {
return false; return this$name == null ? other$name == null : this$name.equals(other$name);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -43,9 +43,6 @@ public class PushConfigurationState {
@JsonField(name = "usesRegularPass") @JsonField(name = "usesRegularPass")
public boolean usesRegularPass; public boolean usesRegularPass;
public PushConfigurationState() {
}
public String getPushToken() { public String getPushToken() {
return this.pushToken; return this.pushToken;
} }
@ -117,10 +114,8 @@ public class PushConfigurationState {
if (this$userPublicKey == null ? other$userPublicKey != null : !this$userPublicKey.equals(other$userPublicKey)) { if (this$userPublicKey == null ? other$userPublicKey != null : !this$userPublicKey.equals(other$userPublicKey)) {
return false; return false;
} }
if (this.isUsesRegularPass() != other.isUsesRegularPass()) {
return false; return this.isUsesRegularPass() == other.isUsesRegularPass();
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -38,9 +38,6 @@ public class PushRegistration {
@JsonField(name = "signature") @JsonField(name = "signature")
String signature; String signature;
public PushRegistration() {
}
public String getPublicKey() { public String getPublicKey() {
return this.publicKey; return this.publicKey;
} }
@ -88,10 +85,8 @@ public class PushRegistration {
} }
final Object this$signature = this.getSignature(); final Object this$signature = this.getSignature();
final Object other$signature = other.getSignature(); final Object other$signature = other.getSignature();
if (this$signature == null ? other$signature != null : !this$signature.equals(other$signature)) {
return false; return this$signature == null ? other$signature == null : this$signature.equals(other$signature);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -32,9 +32,6 @@ public class PushRegistrationOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
PushRegistration data; PushRegistration data;
public PushRegistrationOCS() {
}
public PushRegistration getData() { public PushRegistration getData() {
return this.data; return this.data;
} }
@ -56,10 +53,8 @@ public class PushRegistrationOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class PushRegistrationOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
PushRegistrationOCS ocs; PushRegistrationOCS ocs;
public PushRegistrationOverall() {
}
public PushRegistrationOCS getOcs() { public PushRegistrationOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class PushRegistrationOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -35,9 +35,6 @@ public class ContactsByNumberOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
public Map<String, String> map = new HashMap(); public Map<String, String> map = new HashMap();
public ContactsByNumberOCS() {
}
public Map<String, String> getMap() { public Map<String, String> getMap() {
return this.map; return this.map;
} }
@ -59,10 +56,8 @@ public class ContactsByNumberOCS extends GenericOCS {
} }
final Object this$map = this.getMap(); final Object this$map = this.getMap();
final Object other$map = other.getMap(); final Object other$map = other.getMap();
if (this$map == null ? other$map != null : !this$map.equals(other$map)) {
return false; return this$map == null ? other$map == null : this$map.equals(other$map);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class ContactsByNumberOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
public ContactsByNumberOCS ocs; public ContactsByNumberOCS ocs;
public ContactsByNumberOverall() {
}
public ContactsByNumberOCS getOcs() { public ContactsByNumberOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class ContactsByNumberOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -33,9 +33,6 @@ public class ExactSharees {
@JsonField(name = "users") @JsonField(name = "users")
List<Sharee> exactSharees; List<Sharee> exactSharees;
public ExactSharees() {
}
public List<Sharee> getExactSharees() { public List<Sharee> getExactSharees() {
return this.exactSharees; return this.exactSharees;
} }
@ -57,10 +54,8 @@ public class ExactSharees {
} }
final Object this$exactSharees = this.getExactSharees(); final Object this$exactSharees = this.getExactSharees();
final Object other$exactSharees = other.getExactSharees(); final Object other$exactSharees = other.getExactSharees();
if (this$exactSharees == null ? other$exactSharees != null : !this$exactSharees.equals(other$exactSharees)) {
return false; return this$exactSharees == null ? other$exactSharees == null : this$exactSharees.equals(other$exactSharees);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -37,9 +37,6 @@ public class Sharee {
@JsonField(name = "label") @JsonField(name = "label")
String label; String label;
public Sharee() {
}
public String getId() { public String getId() {
return this.id; return this.id;
} }
@ -87,10 +84,8 @@ public class Sharee {
} }
final Object this$label = this.getLabel(); final Object this$label = this.getLabel();
final Object other$label = other.getLabel(); final Object other$label = other.getLabel();
if (this$label == null ? other$label != null : !this$label.equals(other$label)) {
return false; return this$label == null ? other$label == null : this$label.equals(other$label);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -32,9 +32,6 @@ public class ShareesOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
SharesData data; SharesData data;
public ShareesOCS() {
}
public SharesData getData() { public SharesData getData() {
return this.data; return this.data;
} }
@ -56,10 +53,8 @@ public class ShareesOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class ShareesOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
ShareesOCS ocs; ShareesOCS ocs;
public ShareesOverall() {
}
public ShareesOCS getOcs() { public ShareesOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class ShareesOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -36,9 +36,6 @@ public class SharesData {
@JsonField(name = "exact") @JsonField(name = "exact")
ExactSharees exactUsers; ExactSharees exactUsers;
public SharesData() {
}
public List<Sharee> getUsers() { public List<Sharee> getUsers() {
return this.users; return this.users;
} }
@ -73,10 +70,8 @@ public class SharesData {
} }
final Object this$exactUsers = this.getExactUsers(); final Object this$exactUsers = this.getExactUsers();
final Object other$exactUsers = other.getExactUsers(); final Object other$exactUsers = other.getExactUsers();
if (this$exactUsers == null ? other$exactUsers != null : !this$exactUsers.equals(other$exactUsers)) {
return false; return this$exactUsers == null ? other$exactUsers == null : this$exactUsers.equals(other$exactUsers);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class Value {
@JsonField(name = "shareWith") @JsonField(name = "shareWith")
String shareWith; String shareWith;
public Value() {
}
public String getShareWith() { public String getShareWith() {
return this.shareWith; return this.shareWith;
} }
@ -55,10 +52,8 @@ public class Value {
} }
final Object this$shareWith = this.getShareWith(); final Object this$shareWith = this.getShareWith();
final Object other$shareWith = other.getShareWith(); final Object other$shareWith = other.getShareWith();
if (this$shareWith == null ? other$shareWith != null : !this$shareWith.equals(other$shareWith)) {
return false; return this$shareWith == null ? other$shareWith == null : this$shareWith.equals(other$shareWith);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -76,10 +76,8 @@ public class DataChannelMessage {
} }
final Object this$payload = this.getPayload(); final Object this$payload = this.getPayload();
final Object other$payload = other.getPayload(); final Object other$payload = other.getPayload();
if (this$payload == null ? other$payload != null : !this$payload.equals(other$payload)) {
return false; return this$payload == null ? other$payload == null : this$payload.equals(other$payload);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -78,10 +78,8 @@ public class DataChannelMessageNick {
} }
final Object this$payload = this.getPayload(); final Object this$payload = this.getPayload();
final Object other$payload = other.getPayload(); final Object other$payload = other.getPayload();
if (this$payload == null ? other$payload != null : !this$payload.equals(other$payload)) {
return false; return this$payload == null ? other$payload == null : this$payload.equals(other$payload);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -37,9 +37,6 @@ public class NCIceCandidate {
@JsonField(name = "candidate") @JsonField(name = "candidate")
String candidate; String candidate;
public NCIceCandidate() {
}
public int getSdpMLineIndex() { public int getSdpMLineIndex() {
return this.sdpMLineIndex; return this.sdpMLineIndex;
} }
@ -85,10 +82,8 @@ public class NCIceCandidate {
} }
final Object this$candidate = this.getCandidate(); final Object this$candidate = this.getCandidate();
final Object other$candidate = other.getCandidate(); final Object other$candidate = other.getCandidate();
if (this$candidate == null ? other$candidate != null : !this$candidate.equals(other$candidate)) {
return false; return this$candidate == null ? other$candidate == null : this$candidate.equals(other$candidate);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -43,9 +43,6 @@ public class NCMessagePayload {
@JsonField(name = "name") @JsonField(name = "name")
String name; String name;
public NCMessagePayload() {
}
public String getType() { public String getType() {
return this.type; return this.type;
} }
@ -119,10 +116,8 @@ public class NCMessagePayload {
} }
final Object this$name = this.getName(); final Object this$name = this.getName();
final Object other$name = other.getName(); final Object other$name = other.getName();
if (this$name == null ? other$name != null : !this$name.equals(other$name)) {
return false; return this$name == null ? other$name == null : this$name.equals(other$name);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -38,9 +38,6 @@ public class NCMessageWrapper {
@JsonField(name = "sessionId") @JsonField(name = "sessionId")
String sessionId; String sessionId;
public NCMessageWrapper() {
}
public NCSignalingMessage getSignalingMessage() { public NCSignalingMessage getSignalingMessage() {
return this.signalingMessage; return this.signalingMessage;
} }
@ -88,10 +85,8 @@ public class NCMessageWrapper {
} }
final Object this$sessionId = this.getSessionId(); final Object this$sessionId = this.getSessionId();
final Object other$sessionId = other.getSessionId(); final Object other$sessionId = other.getSessionId();
if (this$sessionId == null ? other$sessionId != null : !this$sessionId.equals(other$sessionId)) {
return false; return this$sessionId == null ? other$sessionId == null : this$sessionId.equals(other$sessionId);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -43,9 +43,6 @@ public class NCSignalingMessage {
@JsonField(name = "prefix") @JsonField(name = "prefix")
String prefix; String prefix;
public NCSignalingMessage() {
}
public String getFrom() { public String getFrom() {
return this.from; return this.from;
} }
@ -145,10 +142,8 @@ public class NCSignalingMessage {
} }
final Object this$prefix = this.getPrefix(); final Object this$prefix = this.getPrefix();
final Object other$prefix = other.getPrefix(); final Object other$prefix = other.getPrefix();
if (this$prefix == null ? other$prefix != null : !this$prefix.equals(other$prefix)) {
return false; return this$prefix == null ? other$prefix == null : this$prefix.equals(other$prefix);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -35,9 +35,6 @@ public class Signaling {
@JsonField(name = "data") @JsonField(name = "data")
Object messageWrapper; Object messageWrapper;
public Signaling() {
}
public String getType() { public String getType() {
return this.type; return this.type;
} }
@ -72,10 +69,8 @@ public class Signaling {
} }
final Object this$messageWrapper = this.getMessageWrapper(); final Object this$messageWrapper = this.getMessageWrapper();
final Object other$messageWrapper = other.getMessageWrapper(); final Object other$messageWrapper = other.getMessageWrapper();
if (this$messageWrapper == null ? other$messageWrapper != null : !this$messageWrapper.equals(other$messageWrapper)) {
return false; return this$messageWrapper == null ? other$messageWrapper == null : this$messageWrapper.equals(other$messageWrapper);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class SignalingOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
List<Signaling> signalings; List<Signaling> signalings;
public SignalingOCS() {
}
public List<Signaling> getSignalings() { public List<Signaling> getSignalings() {
return this.signalings; return this.signalings;
} }
@ -55,10 +52,8 @@ public class SignalingOCS extends GenericOCS {
} }
final Object this$signalings = this.getSignalings(); final Object this$signalings = this.getSignalings();
final Object other$signalings = other.getSignalings(); final Object other$signalings = other.getSignalings();
if (this$signalings == null ? other$signalings != null : !this$signalings.equals(other$signalings)) {
return false; return this$signalings == null ? other$signalings == null : this$signalings.equals(other$signalings);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -28,9 +28,6 @@ public class SignalingOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
SignalingOCS ocs; SignalingOCS ocs;
public SignalingOverall() {
}
public SignalingOCS getOcs() { public SignalingOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -52,10 +49,8 @@ public class SignalingOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -39,9 +39,6 @@ public class IceServer {
@JsonField(name = "credential") @JsonField(name = "credential")
String credential; String credential;
public IceServer() {
}
public String getUrl() { public String getUrl() {
return this.url; return this.url;
} }
@ -102,10 +99,8 @@ public class IceServer {
} }
final Object this$credential = this.getCredential(); final Object this$credential = this.getCredential();
final Object other$credential = other.getCredential(); final Object other$credential = other.getCredential();
if (this$credential == null ? other$credential != null : !this$credential.equals(other$credential)) {
return false; return this$credential == null ? other$credential == null : this$credential.equals(other$credential);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -39,9 +39,6 @@ public class Settings {
@JsonField(name = "ticket") @JsonField(name = "ticket")
String externalSignalingTicket; String externalSignalingTicket;
public Settings() {
}
public List<IceServer> getStunServers() { public List<IceServer> getStunServers() {
return this.stunServers; return this.stunServers;
} }
@ -102,10 +99,8 @@ public class Settings {
} }
final Object this$externalSignalingTicket = this.getExternalSignalingTicket(); final Object this$externalSignalingTicket = this.getExternalSignalingTicket();
final Object other$externalSignalingTicket = other.getExternalSignalingTicket(); final Object other$externalSignalingTicket = other.getExternalSignalingTicket();
if (this$externalSignalingTicket == null ? other$externalSignalingTicket != null : !this$externalSignalingTicket.equals(other$externalSignalingTicket)) {
return false; return this$externalSignalingTicket == null ? other$externalSignalingTicket == null : this$externalSignalingTicket.equals(other$externalSignalingTicket);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -29,9 +29,6 @@ public class SignalingSettingsOcs extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
Settings settings; Settings settings;
public SignalingSettingsOcs() {
}
public Settings getSettings() { public Settings getSettings() {
return this.settings; return this.settings;
} }
@ -53,10 +50,8 @@ public class SignalingSettingsOcs extends GenericOCS {
} }
final Object this$settings = this.getSettings(); final Object this$settings = this.getSettings();
final Object other$settings = other.getSettings(); final Object other$settings = other.getSettings();
if (this$settings == null ? other$settings != null : !this$settings.equals(other$settings)) {
return false; return this$settings == null ? other$settings == null : this$settings.equals(other$settings);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -28,9 +28,6 @@ public class SignalingSettingsOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
SignalingSettingsOcs ocs; SignalingSettingsOcs ocs;
public SignalingSettingsOverall() {
}
public SignalingSettingsOcs getOcs() { public SignalingSettingsOcs getOcs() {
return this.ocs; return this.ocs;
} }
@ -52,10 +49,8 @@ public class SignalingSettingsOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -72,9 +72,6 @@ public class UserProfileData {
@JsonField(name = "websiteScope", typeConverter = ScopeConverter.class) @JsonField(name = "websiteScope", typeConverter = ScopeConverter.class)
Scope websiteScope; Scope websiteScope;
public UserProfileData() {
}
public String getValueByField(ProfileController.Field field) { public String getValueByField(ProfileController.Field field) {
switch (field) { switch (field) {
case EMAIL: case EMAIL:
@ -303,10 +300,8 @@ public class UserProfileData {
} }
final Object this$websiteScope = this.getWebsiteScope(); final Object this$websiteScope = this.getWebsiteScope();
final Object other$websiteScope = other.getWebsiteScope(); final Object other$websiteScope = other.getWebsiteScope();
if (this$websiteScope == null ? other$websiteScope != null : !this$websiteScope.equals(other$websiteScope)) {
return false; return this$websiteScope == null ? other$websiteScope == null : this$websiteScope.equals(other$websiteScope);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -34,9 +34,6 @@ public class UserProfileFieldsOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
ArrayList<String> data; ArrayList<String> data;
public UserProfileFieldsOCS() {
}
public ArrayList<String> getData() { public ArrayList<String> getData() {
return this.data; return this.data;
} }
@ -65,10 +62,8 @@ public class UserProfileFieldsOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class UserProfileFieldsOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
UserProfileFieldsOCS ocs; UserProfileFieldsOCS ocs;
public UserProfileFieldsOverall() {
}
public UserProfileFieldsOCS getOcs() { public UserProfileFieldsOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class UserProfileFieldsOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -32,9 +32,6 @@ public class UserProfileOCS extends GenericOCS {
@JsonField(name = "data") @JsonField(name = "data")
UserProfileData data; UserProfileData data;
public UserProfileOCS() {
}
public UserProfileData getData() { public UserProfileData getData() {
return this.data; return this.data;
} }
@ -56,10 +53,8 @@ public class UserProfileOCS extends GenericOCS {
} }
final Object this$data = this.getData(); final Object this$data = this.getData();
final Object other$data = other.getData(); final Object other$data = other.getData();
if (this$data == null ? other$data != null : !this$data.equals(other$data)) {
return false; return this$data == null ? other$data == null : this$data.equals(other$data);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class UserProfileOverall {
@JsonField(name = "ocs") @JsonField(name = "ocs")
UserProfileOCS ocs; UserProfileOCS ocs;
public UserProfileOverall() {
}
public UserProfileOCS getOcs() { public UserProfileOCS getOcs() {
return this.ocs; return this.ocs;
} }
@ -55,10 +52,8 @@ public class UserProfileOverall {
} }
final Object this$ocs = this.getOcs(); final Object this$ocs = this.getOcs();
final Object other$ocs = other.getOcs(); final Object other$ocs = other.getOcs();
if (this$ocs == null ? other$ocs != null : !this$ocs.equals(other$ocs)) {
return false; return this$ocs == null ? other$ocs == null : this$ocs.equals(other$ocs);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -37,9 +37,6 @@ public class ActorWebSocketMessage {
@JsonField(name = "userid") @JsonField(name = "userid")
String userid; String userid;
public ActorWebSocketMessage() {
}
public String getType() { public String getType() {
return this.type; return this.type;
} }
@ -87,10 +84,8 @@ public class ActorWebSocketMessage {
} }
final Object this$userid = this.getUserid(); final Object this$userid = this.getUserid();
final Object other$userid = other.getUserid(); final Object other$userid = other.getUserid();
if (this$userid == null ? other$userid != null : !this$userid.equals(other$userid)) {
return false; return this$userid == null ? other$userid == null : this$userid.equals(other$userid);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -34,9 +34,6 @@ public class AuthParametersWebSocketMessage {
@JsonField(name = "ticket") @JsonField(name = "ticket")
String ticket; String ticket;
public AuthParametersWebSocketMessage() {
}
public String getUserid() { public String getUserid() {
return this.userid; return this.userid;
} }
@ -71,10 +68,8 @@ public class AuthParametersWebSocketMessage {
} }
final Object this$ticket = this.getTicket(); final Object this$ticket = this.getTicket();
final Object other$ticket = other.getTicket(); final Object other$ticket = other.getTicket();
if (this$ticket == null ? other$ticket != null : !this$ticket.equals(other$ticket)) {
return false; return this$ticket == null ? other$ticket == null : this$ticket.equals(other$ticket);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -34,9 +34,6 @@ public class AuthWebSocketMessage {
@JsonField(name = "params") @JsonField(name = "params")
AuthParametersWebSocketMessage authParametersWebSocketMessage; AuthParametersWebSocketMessage authParametersWebSocketMessage;
public AuthWebSocketMessage() {
}
public String getUrl() { public String getUrl() {
return this.url; return this.url;
} }
@ -71,10 +68,8 @@ public class AuthWebSocketMessage {
} }
final Object this$authParametersWebSocketMessage = this.getAuthParametersWebSocketMessage(); final Object this$authParametersWebSocketMessage = this.getAuthParametersWebSocketMessage();
final Object other$authParametersWebSocketMessage = other.getAuthParametersWebSocketMessage(); final Object other$authParametersWebSocketMessage = other.getAuthParametersWebSocketMessage();
if (this$authParametersWebSocketMessage == null ? other$authParametersWebSocketMessage != null : !this$authParametersWebSocketMessage.equals(other$authParametersWebSocketMessage)) {
return false; return this$authParametersWebSocketMessage == null ? other$authParametersWebSocketMessage == null : this$authParametersWebSocketMessage.equals(other$authParametersWebSocketMessage);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class BaseWebSocketMessage {
@JsonField(name = "type") @JsonField(name = "type")
String type; String type;
public BaseWebSocketMessage() {
}
public String getType() { public String getType() {
return this.type; return this.type;
} }
@ -55,10 +52,8 @@ public class BaseWebSocketMessage {
} }
final Object this$type = this.getType(); final Object this$type = this.getType();
final Object other$type = other.getType(); final Object other$type = other.getType();
if (this$type == null ? other$type != null : !this$type.equals(other$type)) {
return false; return this$type == null ? other$type == null : this$type.equals(other$type);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -33,9 +33,6 @@ public class ByeWebSocketMessage extends BaseWebSocketMessage {
@JsonField(name = "bye") @JsonField(name = "bye")
HashMap<String, Object> bye; HashMap<String, Object> bye;
public ByeWebSocketMessage() {
}
public HashMap<String, Object> getBye() { public HashMap<String, Object> getBye() {
return this.bye; return this.bye;
} }
@ -57,10 +54,8 @@ public class ByeWebSocketMessage extends BaseWebSocketMessage {
} }
final Object this$bye = this.getBye(); final Object this$bye = this.getBye();
final Object other$bye = other.getBye(); final Object other$bye = other.getBye();
if (this$bye == null ? other$bye != null : !this$bye.equals(other$bye)) {
return false; return this$bye == null ? other$bye == null : this$bye.equals(other$bye);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class CallOverallWebSocketMessage extends BaseWebSocketMessage {
@JsonField(name = "message") @JsonField(name = "message")
CallWebSocketMessage callWebSocketMessage; CallWebSocketMessage callWebSocketMessage;
public CallOverallWebSocketMessage() {
}
public CallWebSocketMessage getCallWebSocketMessage() { public CallWebSocketMessage getCallWebSocketMessage() {
return this.callWebSocketMessage; return this.callWebSocketMessage;
} }
@ -55,10 +52,8 @@ public class CallOverallWebSocketMessage extends BaseWebSocketMessage {
} }
final Object this$callWebSocketMessage = this.getCallWebSocketMessage(); final Object this$callWebSocketMessage = this.getCallWebSocketMessage();
final Object other$callWebSocketMessage = other.getCallWebSocketMessage(); final Object other$callWebSocketMessage = other.getCallWebSocketMessage();
if (this$callWebSocketMessage == null ? other$callWebSocketMessage != null : !this$callWebSocketMessage.equals(other$callWebSocketMessage)) {
return false; return this$callWebSocketMessage == null ? other$callWebSocketMessage == null : this$callWebSocketMessage.equals(other$callWebSocketMessage);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -38,9 +38,6 @@ public class CallWebSocketMessage {
@JsonField(name = "data") @JsonField(name = "data")
NCSignalingMessage ncSignalingMessage; NCSignalingMessage ncSignalingMessage;
public CallWebSocketMessage() {
}
public ActorWebSocketMessage getRecipientWebSocketMessage() { public ActorWebSocketMessage getRecipientWebSocketMessage() {
return this.recipientWebSocketMessage; return this.recipientWebSocketMessage;
} }
@ -88,10 +85,8 @@ public class CallWebSocketMessage {
} }
final Object this$ncSignalingMessage = this.getNcSignalingMessage(); final Object this$ncSignalingMessage = this.getNcSignalingMessage();
final Object other$ncSignalingMessage = other.getNcSignalingMessage(); final Object other$ncSignalingMessage = other.getNcSignalingMessage();
if (this$ncSignalingMessage == null ? other$ncSignalingMessage != null : !this$ncSignalingMessage.equals(other$ncSignalingMessage)) {
return false; return this$ncSignalingMessage == null ? other$ncSignalingMessage == null : this$ncSignalingMessage.equals(other$ncSignalingMessage);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class ErrorOverallWebSocketMessage extends BaseWebSocketMessage {
@JsonField(name = "error") @JsonField(name = "error")
ErrorWebSocketMessage errorWebSocketMessage; ErrorWebSocketMessage errorWebSocketMessage;
public ErrorOverallWebSocketMessage() {
}
public ErrorWebSocketMessage getErrorWebSocketMessage() { public ErrorWebSocketMessage getErrorWebSocketMessage() {
return this.errorWebSocketMessage; return this.errorWebSocketMessage;
} }
@ -55,10 +52,8 @@ public class ErrorOverallWebSocketMessage extends BaseWebSocketMessage {
} }
final Object this$errorWebSocketMessage = this.getErrorWebSocketMessage(); final Object this$errorWebSocketMessage = this.getErrorWebSocketMessage();
final Object other$errorWebSocketMessage = other.getErrorWebSocketMessage(); final Object other$errorWebSocketMessage = other.getErrorWebSocketMessage();
if (this$errorWebSocketMessage == null ? other$errorWebSocketMessage != null : !this$errorWebSocketMessage.equals(other$errorWebSocketMessage)) {
return false; return this$errorWebSocketMessage == null ? other$errorWebSocketMessage == null : this$errorWebSocketMessage.equals(other$errorWebSocketMessage);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -34,9 +34,6 @@ public class ErrorWebSocketMessage {
@JsonField(name = "message") @JsonField(name = "message")
String message; String message;
public ErrorWebSocketMessage() {
}
public String getCode() { public String getCode() {
return this.code; return this.code;
} }
@ -71,10 +68,8 @@ public class ErrorWebSocketMessage {
} }
final Object this$message = this.getMessage(); final Object this$message = this.getMessage();
final Object other$message = other.getMessage(); final Object other$message = other.getMessage();
if (this$message == null ? other$message != null : !this$message.equals(other$message)) {
return false; return this$message == null ? other$message == null : this$message.equals(other$message);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -35,9 +35,6 @@ public class EventOverallWebSocketMessage extends BaseWebSocketMessage {
@JsonField(name = "event") @JsonField(name = "event")
HashMap<String, Object> eventMap; HashMap<String, Object> eventMap;
public EventOverallWebSocketMessage() {
}
public String getType() { public String getType() {
return this.type; return this.type;
} }
@ -72,10 +69,8 @@ public class EventOverallWebSocketMessage extends BaseWebSocketMessage {
} }
final Object this$eventMap = this.getEventMap(); final Object this$eventMap = this.getEventMap();
final Object other$eventMap = other.getEventMap(); final Object other$eventMap = other.getEventMap();
if (this$eventMap == null ? other$eventMap != null : !this$eventMap.equals(other$eventMap)) {
return false; return this$eventMap == null ? other$eventMap == null : this$eventMap.equals(other$eventMap);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

View File

@ -31,9 +31,6 @@ public class HelloOverallWebSocketMessage extends BaseWebSocketMessage {
@JsonField(name = "hello") @JsonField(name = "hello")
HelloWebSocketMessage helloWebSocketMessage; HelloWebSocketMessage helloWebSocketMessage;
public HelloOverallWebSocketMessage() {
}
public HelloWebSocketMessage getHelloWebSocketMessage() { public HelloWebSocketMessage getHelloWebSocketMessage() {
return this.helloWebSocketMessage; return this.helloWebSocketMessage;
} }
@ -55,10 +52,8 @@ public class HelloOverallWebSocketMessage extends BaseWebSocketMessage {
} }
final Object this$helloWebSocketMessage = this.getHelloWebSocketMessage(); final Object this$helloWebSocketMessage = this.getHelloWebSocketMessage();
final Object other$helloWebSocketMessage = other.getHelloWebSocketMessage(); final Object other$helloWebSocketMessage = other.getHelloWebSocketMessage();
if (this$helloWebSocketMessage == null ? other$helloWebSocketMessage != null : !this$helloWebSocketMessage.equals(other$helloWebSocketMessage)) {
return false; return this$helloWebSocketMessage == null ? other$helloWebSocketMessage == null : this$helloWebSocketMessage.equals(other$helloWebSocketMessage);
}
return true;
} }
protected boolean canEqual(final Object other) { protected boolean canEqual(final Object other) {

Some files were not shown because too many files have changed in this diff Show More