public boolean equals()

in shenyu-plugin/shenyu-plugin-logging/shenyu-plugin-logging-huawei-lts/src/main/java/org/apache/shenyu/plugin/huawei/lts/config/HuaweiLogCollectConfig.java [449:474]


        public boolean equals(final Object o) {
            if (this == o) {
                return Boolean.TRUE;
            }
            if (Objects.isNull(o) || getClass() != o.getClass()) {
                return Boolean.FALSE;
            }
            HuaweiLtsLogConfig that = (HuaweiLtsLogConfig) o;
            return Objects.equals(getProjectId(), that.getProjectId())
                    && Objects.equals(getLogGroupId(), that.getLogGroupId())
                    && Objects.equals(getLogStreamId(), that.getLogStreamId())
                    && Objects.equals(getAccessKeyId(), that.getAccessKeyId())
                    && Objects.equals(getAccessKeySecret(), that.getAccessKeySecret())
                    && Objects.equals(getRegionName(), that.getRegionName())
                    && Objects.equals(getTotalSizeInBytes(), that.getTotalSizeInBytes())
                    && Objects.equals(getMaxBlockMs(), that.getMaxBlockMs())
                    && Objects.equals(getIoThreadCount(), that.getIoThreadCount())
                    && Objects.equals(getBatchSizeThresholdInBytes(), that.getBatchSizeThresholdInBytes())
                    && Objects.equals(getBatchCountThreshold(), that.getBatchCountThreshold())
                    && Objects.equals(getLingerMs(), that.getLingerMs())
                    && Objects.equals(getRetries(), that.getRetries())
                    && Objects.equals(getBaseRetryBackoffMs(), that.getBaseRetryBackoffMs())
                    && Objects.equals(getMaxRetryBackoffMs(), that.getMaxRetryBackoffMs())
                    && Objects.equals(getEnableLocalTest(), that.getEnableLocalTest())
                    && Objects.equals(getSetGiveUpExtraLongSingleLog(), that.getSetGiveUpExtraLongSingleLog());
        }