in shenyu-admin/src/main/java/org/apache/shenyu/admin/model/dto/SelectorDTO.java [419:433]
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (Objects.isNull(o) || getClass() != o.getClass()) {
return false;
}
SelectorDTO that = (SelectorDTO) o;
return Objects.equals(id, that.id) && Objects.equals(pluginId, that.pluginId) && 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(loged, that.loged) && Objects.equals(continued, that.continued)
&& Objects.equals(handle, that.handle) && Objects.equals(selectorConditions, that.selectorConditions)
&& Objects.equals(matchRestful, that.matchRestful) && Objects.equals(selectorRules, that.selectorRules)
&& Objects.equals(namespaceId, that.namespaceId);
}