public boolean equals()

in shenyu-plugin/shenyu-plugin-logging/shenyu-plugin-logging-tencent-cls/src/main/java/org/apache/shenyu/plugin/tencent/cls/config/TencentLogCollectConfig.java [406:431]


        public boolean equals(final Object o) {
            if (this == o) {
                return Boolean.TRUE;
            }

            if (o == null || getClass() != o.getClass()) {
                return Boolean.FALSE;
            }

            TencentClsLogConfig that = (TencentClsLogConfig) o;
            return Objects.equals(getSecretId(), that.getSecretId())
                    && Objects.equals(getSecretKey(), that.getSecretKey())
                    && Objects.equals(getEndpoint(), that.getEndpoint())
                    && Objects.equals(getTopic(), that.getTopic())
                    && Objects.equals(getSendThreadCount(), that.getSendThreadCount())
                    && Objects.equals(getTotalSizeInBytes(), that.getTotalSizeInBytes())
                    && Objects.equals(getMaxSendThreadCount(), that.getMaxSendThreadCount())
                    && Objects.equals(getMaxBlockSec(), that.getMaxBlockSec())
                    && Objects.equals(getMaxBatchSize(), that.getMaxBatchSize())
                    && Objects.equals(getMaxBatchCount(), that.getMaxBatchCount())
                    && Objects.equals(getLingerMs(), that.getLingerMs())
                    && Objects.equals(getRetries(), that.getRetries())
                    && Objects.equals(getMaxReservedAttempts(), that.getMaxReservedAttempts())
                    && Objects.equals(getBaseRetryBackoffMs(), that.getBaseRetryBackoffMs())
                    && Objects.equals(getMaxRetryBackoffMs(), that.getMaxRetryBackoffMs());
        }