blob: 18bc0dfbe44838cd4cb98994bccc06d04c4aa5e1 [file] [log] [blame]
/*
* 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.
*/
package org.apache.storm.kafka.monitor;
/**
* Class representing information for querying kafka for log head offsets, consumer offsets and the difference for new kafka spout using new consumer api
*/
public class NewKafkaSpoutOffsetQuery {
private final String topics; // comma separated list of topics
private final String consumerGroupId; // consumer group id for which the offset needs to be calculated
private final String bootStrapBrokers; // bootstrap brokers
private final String securityProtocol; // security protocol to connect to kafka
public NewKafkaSpoutOffsetQuery(String topics, String bootstrapBrokers, String consumerGroupId, String securityProtocol) {
this.topics = topics;
this.bootStrapBrokers = bootstrapBrokers;
this.consumerGroupId = consumerGroupId;
this.securityProtocol = securityProtocol;
}
public String getTopics() {
return topics;
}
public String getBootStrapBrokers() {
return bootStrapBrokers;
}
public String getConsumerGroupId() {
return this.consumerGroupId;
}
public String getSecurityProtocol() {
return this.securityProtocol;
}
@Override
public String toString() {
return "NewKafkaSpoutOffsetQuery{" +
"topics='" + topics + '\'' +
", consumerGroupId='" + consumerGroupId + '\'' +
", bootStrapBrokers='" + bootStrapBrokers + '\'' +
'}';
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
NewKafkaSpoutOffsetQuery that = (NewKafkaSpoutOffsetQuery) o;
if (topics != null ? !topics.equals(that.topics) : that.topics != null) return false;
if (consumerGroupId != null ? !consumerGroupId.equals(that.consumerGroupId) : that.consumerGroupId != null) return false;
return !(bootStrapBrokers != null ? !bootStrapBrokers.equals(that.bootStrapBrokers) : that.bootStrapBrokers != null);
}
@Override
public int hashCode() {
int result = topics != null ? topics.hashCode() : 0;
result = 31 * result + (consumerGroupId != null ? consumerGroupId.hashCode() : 0);
result = 31 * result + (bootStrapBrokers != null ? bootStrapBrokers.hashCode() : 0);
return result;
}
}