mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-03 11:28:12 +08:00
support dynamic change auth
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package com.xiaojukeji.kafka.manager.common.entity.pojo;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* @author zengqiao
|
||||
@@ -116,4 +117,22 @@ public class ClusterDO implements Comparable<ClusterDO> {
|
||||
public int compareTo(ClusterDO clusterDO) {
|
||||
return this.id.compareTo(clusterDO.id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) return true;
|
||||
if (o == null || getClass() != o.getClass()) return false;
|
||||
ClusterDO clusterDO = (ClusterDO) o;
|
||||
return Objects.equals(id, clusterDO.id)
|
||||
&& Objects.equals(clusterName, clusterDO.clusterName)
|
||||
&& Objects.equals(zookeeper, clusterDO.zookeeper)
|
||||
&& Objects.equals(bootstrapServers, clusterDO.bootstrapServers)
|
||||
&& Objects.equals(securityProperties, clusterDO.securityProperties)
|
||||
&& Objects.equals(jmxProperties, clusterDO.jmxProperties);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(id, clusterName, zookeeper, bootstrapServers, securityProperties, jmxProperties);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user