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

com.epam.eco.kafkamanager.rest.request.TopicRequest Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 *  Copyright 2022 EPAM Systems
 *
 *  Licensed 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 com.epam.eco.kafkamanager.rest.request;

import java.util.Map;
import java.util.Objects;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * @author Raman_Babich
 */
public class TopicRequest {

    private final String topicName;
    private final Integer partitionCount;
    private final Integer replicationFactor;
    private final Map config;
    private final String description;
    private final Map attributes;

    public TopicRequest(
            @JsonProperty("topicName") String topicName,
            @JsonProperty("partitionCount") int partitionCount,
            @JsonProperty("replicationFactor") int replicationFactor,
            @JsonProperty("config") Map config,
            @JsonProperty("description") String description,
            @JsonProperty("attributes") Map attributes) {
        this.topicName = topicName;
        this.partitionCount = partitionCount;
        this.replicationFactor = replicationFactor;
        this.config = config;
        this.description = description;
        this.attributes = attributes;
    }

    public String getTopicName() {
        return topicName;
    }

    public Integer getPartitionCount() {
        return partitionCount;
    }

    public Integer getReplicationFactor() {
        return replicationFactor;
    }

    public Map getConfig() {
        return config;
    }

    public String getDescription() {
        return description;
    }

    public Map getAttributes() {
        return attributes;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        TopicRequest that = (TopicRequest) o;
        return Objects.equals(topicName, that.topicName) &&
                Objects.equals(partitionCount, that.partitionCount) &&
                Objects.equals(replicationFactor, that.replicationFactor) &&
                Objects.equals(config, that.config) &&
                Objects.equals(description, that.description) &&
                Objects.equals(attributes, that.attributes);
    }

    @Override
    public int hashCode() {
        return Objects.hash(topicName, partitionCount, replicationFactor, config, description, attributes);
    }

    @Override
    public String toString() {
        return "TopicRequest{" +
                "topicName='" + topicName + '\'' +
                ", partitionCount=" + partitionCount +
                ", replicationFactor=" + replicationFactor +
                ", config=" + config +
                ", description='" + description + '\'' +
                ", attributes=" + attributes +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy