All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jresearch.gavka.domain.TopicInfo Maven / Gradle / Ivy

There is a newer version: 1.0.65
Show newest version
package org.jresearch.gavka.domain;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class TopicInfo {

	private String name;
	private List consumerGroups = new ArrayList<>();
	private Map partitions = new HashMap<>();

	public TopicInfo() {
		// for JSON
	}

	public TopicInfo(final String name, final List consumerGroups, final Map partitions) {
		super();
		this.name = name;
		this.consumerGroups = consumerGroups;
		this.partitions = partitions;
	}

	public String getName() {
		return name;
	}

	public void setName(final String name) {
		this.name = name;
	}

	public List getConsumerGroups() {
		return consumerGroups;
	}

	public void setConsumerGroups(final List consumerGroups) {
		this.consumerGroups = consumerGroups;
	}

	public Map getPartitions() {
		return partitions;
	}

	public void setPartitions(final Map partitions) {
		this.partitions = partitions;
	}

	public void addPartition(final Integer number, final PartitionOffsetInfo po) {
		partitions.put(number, po);
	}

	public void removePartition(final Integer number) {
		partitions.remove(number);
	}

	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + ((consumerGroups == null) ? 0 : consumerGroups.hashCode());
		result = prime * result + ((name == null) ? 0 : name.hashCode());
		result = prime * result + ((partitions == null) ? 0 : partitions.hashCode());
		return result;
	}

	@Override
	public boolean equals(final Object obj) {
		if (this == obj) {
			return true;
		}
		if (obj == null) {
			return false;
		}
		if (getClass() != obj.getClass()) {
			return false;
		}
		final TopicInfo other = (TopicInfo) obj;
		if (consumerGroups == null) {
			if (other.consumerGroups != null) {
				return false;
			}
		} else if (!consumerGroups.equals(other.consumerGroups)) {
			return false;
		}
		if (name == null) {
			if (other.name != null) {
				return false;
			}
		} else if (!name.equals(other.name)) {
			return false;
		}
		if (partitions == null) {
			if (other.partitions != null) {
				return false;
			}
		} else if (!partitions.equals(other.partitions)) {
			return false;
		}
		return true;
	}

	@Override
	public String toString() {
		return "TopicInfo [name=" + name + ", consumerGroups=" + consumerGroups + ", partitions=" + partitions + "]";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy