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

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

The newest version!
package com.aliyun.datahub.client.model;

import java.util.List;

public class SourceDtsConfig extends SourceConfig {
    /**
     * The endpoint of dts service
     */
    private String endpoint;

    /**
     * The dts topic name
     */
    private String topic;

    /**
     * The subscription ID of dts
     */
    private String subId;

    /**
     * The user of dts subscription
     */
    private String user;

    /**
     * The password of dts subscription
     */
    private String password;

    /**
     * Id fields to assign shard
     */
    private List idFields;

    public String getEndpoint() {
        return endpoint;
    }

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

    public String getTopic() {
        return topic;
    }

    public void setTopic(String topic) {
        this.topic = topic;
    }

    public String getSubId() {
        return subId;
    }

    public void setSubId(String subId) {
        this.subId = subId;
    }

    public String getUser() {
        return user;
    }

    public void setUser(String user) {
        this.user = user;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public List getIdFields() {
        return idFields;
    }

    public void setIdFields(List idFields) {
        this.idFields = idFields;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy