in artemis-server/src/main/java/org/apache/activemq/artemis/core/settings/impl/AddressSettings.java [1917:2325]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
AddressSettings other = (AddressSettings) obj;
if (addressFullMessagePolicy == null) {
if (other.addressFullMessagePolicy != null)
return false;
} else if (!addressFullMessagePolicy.equals(other.addressFullMessagePolicy))
return false;
if (deadLetterAddress == null) {
if (other.deadLetterAddress != null)
return false;
} else if (!deadLetterAddress.equals(other.deadLetterAddress))
return false;
if (dropMessagesWhenFull == null) {
if (other.dropMessagesWhenFull != null)
return false;
} else if (!dropMessagesWhenFull.equals(other.dropMessagesWhenFull))
return false;
if (expiryAddress == null) {
if (other.expiryAddress != null)
return false;
} else if (!expiryAddress.equals(other.expiryAddress))
return false;
if (expiryDelay == null) {
if (other.expiryDelay != null)
return false;
} else if (!expiryDelay.equals(other.expiryDelay))
return false;
if (minExpiryDelay == null) {
if (other.minExpiryDelay != null)
return false;
} else if (!minExpiryDelay.equals(other.minExpiryDelay))
return false;
if (maxExpiryDelay == null) {
if (other.maxExpiryDelay != null)
return false;
} else if (!maxExpiryDelay.equals(other.maxExpiryDelay))
return false;
if (defaultLastValueQueue == null) {
if (other.defaultLastValueQueue != null)
return false;
} else if (!defaultLastValueQueue.equals(other.defaultLastValueQueue))
return false;
if (defaultLastValueKey == null) {
if (other.defaultLastValueKey != null)
return false;
} else if (!defaultLastValueKey.equals(other.defaultLastValueKey))
return false;
if (defaultNonDestructive == null) {
if (other.defaultNonDestructive != null)
return false;
} else if (!defaultNonDestructive.equals(other.defaultNonDestructive))
return false;
if (defaultExclusiveQueue == null) {
if (other.defaultExclusiveQueue != null)
return false;
} else if (!defaultExclusiveQueue.equals(other.defaultExclusiveQueue))
return false;
if (maxDeliveryAttempts == null) {
if (other.maxDeliveryAttempts != null)
return false;
} else if (!maxDeliveryAttempts.equals(other.maxDeliveryAttempts))
return false;
if (maxSizeBytes == null) {
if (other.maxSizeBytes != null)
return false;
} else if (!maxSizeBytes.equals(other.maxSizeBytes))
return false;
if (messageCounterHistoryDayLimit == null) {
if (other.messageCounterHistoryDayLimit != null)
return false;
} else if (!messageCounterHistoryDayLimit.equals(other.messageCounterHistoryDayLimit))
return false;
if (pageSizeBytes == null) {
if (other.pageSizeBytes != null)
return false;
} else if (!pageSizeBytes.equals(other.pageSizeBytes))
return false;
if (pageMaxCache == null) {
if (other.pageMaxCache != null)
return false;
} else if (!pageMaxCache.equals(other.pageMaxCache))
return false;
if (redeliveryDelay == null) {
if (other.redeliveryDelay != null)
return false;
} else if (!redeliveryDelay.equals(other.redeliveryDelay))
return false;
if (redeliveryMultiplier == null) {
if (other.redeliveryMultiplier != null)
return false;
} else if (!redeliveryMultiplier.equals(other.redeliveryMultiplier))
return false;
if (redeliveryCollisionAvoidanceFactor == null) {
if (other.redeliveryCollisionAvoidanceFactor != null)
return false;
} else if (!redeliveryCollisionAvoidanceFactor.equals(other.redeliveryCollisionAvoidanceFactor))
return false;
if (maxRedeliveryDelay == null) {
if (other.maxRedeliveryDelay != null)
return false;
} else if (!maxRedeliveryDelay.equals(other.maxRedeliveryDelay))
return false;
if (redistributionDelay == null) {
if (other.redistributionDelay != null)
return false;
} else if (!redistributionDelay.equals(other.redistributionDelay))
return false;
if (sendToDLAOnNoRoute == null) {
if (other.sendToDLAOnNoRoute != null)
return false;
} else if (!sendToDLAOnNoRoute.equals(other.sendToDLAOnNoRoute))
return false;
if (slowConsumerThreshold == null) {
if (other.slowConsumerThreshold != null)
return false;
} else if (!slowConsumerThreshold.equals(other.slowConsumerThreshold))
return false;
if (slowConsumerCheckPeriod == null) {
if (other.slowConsumerCheckPeriod != null)
return false;
} else if (!slowConsumerCheckPeriod.equals(other.slowConsumerCheckPeriod))
return false;
if (slowConsumerPolicy == null) {
if (other.slowConsumerPolicy != null)
return false;
} else if (!slowConsumerPolicy.equals(other.slowConsumerPolicy))
return false;
if (autoCreateJmsQueues == null) {
if (other.autoCreateJmsQueues != null)
return false;
} else if (!autoCreateJmsQueues.equals(other.autoCreateJmsQueues))
return false;
if (autoDeleteJmsQueues == null) {
if (other.autoDeleteJmsQueues != null)
return false;
} else if (!autoDeleteJmsQueues.equals(other.autoDeleteJmsQueues))
return false;
if (autoCreateJmsTopics == null) {
if (other.autoCreateJmsTopics != null)
return false;
} else if (!autoCreateJmsTopics.equals(other.autoCreateJmsTopics))
return false;
if (autoDeleteJmsTopics == null) {
if (other.autoDeleteJmsTopics != null)
return false;
} else if (!autoDeleteJmsTopics.equals(other.autoDeleteJmsTopics))
return false;
if (autoCreateQueues == null) {
if (other.autoCreateQueues != null)
return false;
} else if (!autoCreateQueues.equals(other.autoCreateQueues))
return false;
if (autoDeleteQueues == null) {
if (other.autoDeleteQueues != null)
return false;
} else if (!autoDeleteQueues.equals(other.autoDeleteQueues))
return false;
if (autoDeleteCreatedQueues == null) {
if (other.autoDeleteCreatedQueues != null)
return false;
} else if (!autoDeleteCreatedQueues.equals(other.autoDeleteCreatedQueues))
return false;
if (autoDeleteQueuesDelay == null) {
if (other.autoDeleteQueuesDelay != null)
return false;
} else if (!autoDeleteQueuesDelay.equals(other.autoDeleteQueuesDelay))
return false;
if (autoDeleteQueuesSkipUsageCheck == null) {
if (other.autoDeleteQueuesSkipUsageCheck != null)
return false;
} else if (!autoDeleteQueuesSkipUsageCheck.equals(other.autoDeleteQueuesSkipUsageCheck))
return false;
if (autoDeleteQueuesMessageCount == null) {
if (other.autoDeleteQueuesMessageCount != null)
return false;
} else if (!autoDeleteQueuesMessageCount.equals(other.autoDeleteQueuesMessageCount))
return false;
if (configDeleteQueues == null) {
if (other.configDeleteQueues != null)
return false;
} else if (!configDeleteQueues.equals(other.configDeleteQueues))
return false;
if (autoCreateAddresses == null) {
if (other.autoCreateAddresses != null)
return false;
} else if (!autoCreateAddresses.equals(other.autoCreateAddresses))
return false;
if (autoDeleteAddresses == null) {
if (other.autoDeleteAddresses != null)
return false;
} else if (!autoDeleteAddresses.equals(other.autoDeleteAddresses))
return false;
if (autoDeleteAddressesDelay == null) {
if (other.autoDeleteAddressesDelay != null)
return false;
} else if (!autoDeleteAddressesDelay.equals(other.autoDeleteAddressesDelay))
return false;
if (autoDeleteAddressesSkipUsageCheck == null) {
if (other.autoDeleteAddressesSkipUsageCheck != null)
return false;
} else if (!autoDeleteAddressesSkipUsageCheck.equals(other.autoDeleteAddressesSkipUsageCheck))
return false;
if (configDeleteAddresses == null) {
if (other.configDeleteAddresses != null)
return false;
} else if (!configDeleteAddresses.equals(other.configDeleteAddresses))
return false;
if (configDeleteDiverts == null) {
if (other.configDeleteDiverts != null)
return false;
} else if (!configDeleteDiverts.equals(other.configDeleteDiverts))
return false;
if (managementBrowsePageSize == null) {
if (other.managementBrowsePageSize != null)
return false;
} else if (!managementBrowsePageSize.equals(other.managementBrowsePageSize))
return false;
if (managementMessageAttributeSizeLimit == null) {
if (other.managementMessageAttributeSizeLimit != null)
return false;
} else if (!managementMessageAttributeSizeLimit.equals(other.managementMessageAttributeSizeLimit))
return false;
if (queuePrefetch == null) {
if (other.queuePrefetch != null)
return false;
} else if (!queuePrefetch.equals(other.queuePrefetch))
return false;
if (maxSizeBytesRejectThreshold == null) {
if (other.maxSizeBytesRejectThreshold != null)
return false;
} else if (!maxSizeBytesRejectThreshold.equals(other.maxSizeBytesRejectThreshold))
return false;
if (defaultMaxConsumers == null) {
if (other.defaultMaxConsumers != null)
return false;
} else if (!defaultMaxConsumers.equals(other.defaultMaxConsumers))
return false;
if (defaultPurgeOnNoConsumers == null) {
if (other.defaultPurgeOnNoConsumers != null)
return false;
} else if (!defaultPurgeOnNoConsumers.equals(other.defaultPurgeOnNoConsumers))
return false;
if (defaultQueueRoutingType == null) {
if (other.defaultQueueRoutingType != null)
return false;
} else if (!defaultQueueRoutingType.equals(other.defaultQueueRoutingType))
return false;
if (defaultAddressRoutingType == null) {
if (other.defaultAddressRoutingType != null)
return false;
} else if (!defaultAddressRoutingType.equals(other.defaultAddressRoutingType))
return false;
if (defaultConsumersBeforeDispatch == null) {
if (other.defaultConsumersBeforeDispatch != null)
return false;
} else if (!defaultConsumersBeforeDispatch.equals(other.defaultConsumersBeforeDispatch))
return false;
if (defaultDelayBeforeDispatch == null) {
if (other.defaultDelayBeforeDispatch != null)
return false;
} else if (!defaultDelayBeforeDispatch.equals(other.defaultDelayBeforeDispatch))
return false;
if (defaultConsumerWindowSize == null) {
if (other.defaultConsumerWindowSize != null)
return false;
} else if (!defaultConsumerWindowSize.equals(other.defaultConsumerWindowSize))
return false;
if (defaultGroupRebalance == null) {
if (other.defaultGroupRebalance != null)
return false;
} else if (!defaultGroupRebalance.equals(other.defaultGroupRebalance))
return false;
if (defaultGroupRebalancePauseDispatch == null) {
if (other.defaultGroupRebalancePauseDispatch != null)
return false;
} else if (!defaultGroupRebalancePauseDispatch.equals(other.defaultGroupRebalancePauseDispatch))
return false;
if (defaultGroupBuckets == null) {
if (other.defaultGroupBuckets != null)
return false;
} else if (!defaultGroupBuckets.equals(other.defaultGroupBuckets))
return false;
if (defaultGroupFirstKey == null) {
if (other.defaultGroupFirstKey != null)
return false;
} else if (!defaultGroupFirstKey.equals(other.defaultGroupFirstKey))
return false;
if (defaultRingSize == null) {
if (other.defaultRingSize != null)
return false;
} else if (!defaultRingSize.equals(other.defaultRingSize))
return false;
if (retroactiveMessageCount == null) {
if (other.retroactiveMessageCount != null)
return false;
} else if (!retroactiveMessageCount.equals(other.retroactiveMessageCount))
return false;
if (autoCreateDeadLetterResources == null) {
if (other.autoCreateDeadLetterResources != null)
return false;
} else if (!autoCreateDeadLetterResources.equals(other.autoCreateDeadLetterResources))
return false;
if (deadLetterQueuePrefix == null) {
if (other.deadLetterQueuePrefix != null)
return false;
} else if (!deadLetterQueuePrefix.equals(other.deadLetterQueuePrefix))
return false;
if (deadLetterQueueSuffix == null) {
if (other.deadLetterQueueSuffix != null)
return false;
} else if (!deadLetterQueueSuffix.equals(other.deadLetterQueueSuffix))
return false;
if (autoCreateExpiryResources == null) {
if (other.autoCreateExpiryResources != null)
return false;
} else if (!autoCreateExpiryResources.equals(other.autoCreateExpiryResources))
return false;
if (expiryQueuePrefix == null) {
if (other.expiryQueuePrefix != null)
return false;
} else if (!expiryQueuePrefix.equals(other.expiryQueuePrefix))
return false;
if (expiryQueueSuffix == null) {
if (other.expiryQueueSuffix != null)
return false;
} else if (!expiryQueueSuffix.equals(other.expiryQueueSuffix))
return false;
if (enableMetrics == null) {
if (other.enableMetrics != null)
return false;
} else if (!enableMetrics.equals(other.enableMetrics))
return false;
if (slowConsumerThresholdMeasurementUnit != other.slowConsumerThresholdMeasurementUnit)
return false;
if (enableIngressTimestamp == null) {
if (other.enableIngressTimestamp != null)
return false;
} else if (!enableIngressTimestamp.equals(other.enableIngressTimestamp))
return false;
if (maxSizeMessages == null) {
if (other.maxSizeMessages != null)
return false;
} else if (!maxSizeMessages.equals(other.maxSizeMessages))
return false;
if (pageLimitBytes == null) {
if (other.pageLimitBytes != null) {
return false;
}
} else if (!pageLimitBytes.equals(other.pageLimitBytes)) {
return false;
}
if (pageLimitMessages == null) {
if (other.pageLimitMessages != null) {
return false;
}
} else if (!pageLimitMessages.equals(other.pageLimitMessages)) {
return false;
}
if (pageFullMessagePolicy == null) {
if (other.pageFullMessagePolicy != null) {
return false;
}
} else if (!pageFullMessagePolicy.equals(other.pageFullMessagePolicy)) {
return false;
}
if (idCacheSize == null) {
if (other.idCacheSize != null) {
return false;
}
} else if (!idCacheSize.equals(other.idCacheSize)) {
return false;
}
return true;
}