com.alibaba.rocketmq.common.protocol.route.TopicRouteData Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* $Id: TopicRouteData.java 1835 2013-05-16 02:00:50Z shijia.wxr $
*/
package com.alibaba.rocketmq.common.protocol.route;
import com.alibaba.rocketmq.remoting.protocol.RemotingSerializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
/**
* @author shijia.wxr
*/
public class TopicRouteData extends RemotingSerializable {
private String orderTopicConf;
private List queueDatas;
private List brokerDatas;
private HashMap/* Filter Server */> filterServerTable;
public TopicRouteData cloneTopicRouteData() {
TopicRouteData topicRouteData = new TopicRouteData();
topicRouteData.setQueueDatas(new ArrayList());
topicRouteData.setBrokerDatas(new ArrayList());
topicRouteData.setFilterServerTable(new HashMap>());
topicRouteData.setOrderTopicConf(this.orderTopicConf);
if (this.queueDatas != null) {
topicRouteData.getQueueDatas().addAll(this.queueDatas);
}
if (this.brokerDatas != null) {
topicRouteData.getBrokerDatas().addAll(this.brokerDatas);
}
if (this.filterServerTable != null) {
topicRouteData.getFilterServerTable().putAll(this.filterServerTable);
}
return topicRouteData;
}
public List getQueueDatas() {
return queueDatas;
}
public void setQueueDatas(List queueDatas) {
this.queueDatas = queueDatas;
}
public List getBrokerDatas() {
return brokerDatas;
}
public void setBrokerDatas(List brokerDatas) {
this.brokerDatas = brokerDatas;
}
public HashMap> getFilterServerTable() {
return filterServerTable;
}
public void setFilterServerTable(HashMap> filterServerTable) {
this.filterServerTable = filterServerTable;
}
public String getOrderTopicConf() {
return orderTopicConf;
}
public void setOrderTopicConf(String orderTopicConf) {
this.orderTopicConf = orderTopicConf;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((brokerDatas == null) ? 0 : brokerDatas.hashCode());
result = prime * result + ((orderTopicConf == null) ? 0 : orderTopicConf.hashCode());
result = prime * result + ((queueDatas == null) ? 0 : queueDatas.hashCode());
result = prime * result + ((filterServerTable == null) ? 0 : filterServerTable.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
TopicRouteData other = (TopicRouteData) obj;
if (brokerDatas == null) {
if (other.brokerDatas != null)
return false;
} else if (!brokerDatas.equals(other.brokerDatas))
return false;
if (orderTopicConf == null) {
if (other.orderTopicConf != null)
return false;
} else if (!orderTopicConf.equals(other.orderTopicConf))
return false;
if (queueDatas == null) {
if (other.queueDatas != null)
return false;
} else if (!queueDatas.equals(other.queueDatas))
return false;
if (filterServerTable == null) {
if (other.filterServerTable != null)
return false;
} else if (!filterServerTable.equals(other.filterServerTable))
return false;
return true;
}
@Override
public String toString() {
return "TopicRouteData [orderTopicConf=" + orderTopicConf + ", queueDatas=" + queueDatas
+ ", brokerDatas=" + brokerDatas + ", filterServerTable=" + filterServerTable + "]";
}
}