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

com.networknt.kafka.common.SchemaRegistryConfig Maven / Gradle / Ivy

package com.networknt.kafka.common;

import java.util.List;

public class SchemaRegistryConfig {
    public static final String CONFIG_NAME = "schema-registry";

    List serverUrls;
    boolean autoRegisterSchema;

    public SchemaRegistryConfig() {
    }

    public List getServerUrls() {
        return serverUrls;
    }

    public void setServerUrls(List serverUrls) {
        this.serverUrls = serverUrls;
    }

    public boolean isAutoRegisterSchema() {
        return autoRegisterSchema;
    }

    public void setAutoRegisterSchema(boolean autoRegisterSchema) {
        this.autoRegisterSchema = autoRegisterSchema;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy