in shenyu-common/src/main/java/org/apache/shenyu/common/dto/SelectorData.java [387:401]
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (Objects.isNull(o) || getClass() != o.getClass()) {
return false;
}
SelectorData that = (SelectorData) o;
return Objects.equals(id, that.id) && Objects.equals(pluginId, that.pluginId) && Objects.equals(pluginName, that.pluginName)
&& Objects.equals(name, that.name) && Objects.equals(matchMode, that.matchMode) && Objects.equals(type, that.type)
&& Objects.equals(sort, that.sort) && Objects.equals(enabled, that.enabled) && Objects.equals(logged, that.logged)
&& Objects.equals(continued, that.continued) && Objects.equals(handle, that.handle) && Objects.equals(conditionList, that.conditionList)
&& Objects.equals(beforeConditionList, that.beforeConditionList) && Objects.equals(matchRestful, that.matchRestful)
&& Objects.equals(namespaceId, that.namespaceId);
}