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

com.aliyun.datahub.client.model.SinkDatahubConfig Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.client.model;


public class SinkDatahubConfig extends SinkConfig {
    /**
     * DataHub service endpoint
     */
    private String endpoint;

    /**
     * DataHub project name
     */
    private String projectName;

    /**
     * Datahub topic name
     */
    private String topicName;

    public String getEndpoint() {
        return endpoint;
    }

    public void setEndpoint(String endpoint) {
        this.endpoint = endpoint;
    }

    public String getProjectName() {
        return projectName;
    }

    public void setProjectName(String projectName) {
        this.projectName = projectName;
    }

    public String getTopicName() {
        return topicName;
    }

    public void setTopicName(String topicName) {
        this.topicName = topicName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy