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

com.aliyun.openservices.log.common.AliyunLOGSink Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
package com.aliyun.openservices.log.common;


import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.annotation.JSONField;
import com.alibaba.fastjson.JSONObject;
import com.aliyun.openservices.log.util.JsonUtils;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class AliyunLOGSink extends DataSink {

    @JSONField
    private String name;

    @JSONField
    private String endpoint;

    @JSONField
    private String project;

    @JSONField
    private String logstore;

    @JSONField
    private String accessKeyId;

    @JSONField
    private String accessKeySecret;

    @JSONField
    private String roleArn;

    @JSONField
    private List datasets;

    public AliyunLOGSink() {
        super(DataSinkType.ALIYUN_LOG);
        this.endpoint = "";
    }

    public AliyunLOGSink(String name, String project, String logstore) {
        super(DataSinkType.ALIYUN_LOG);
        this.name = name;
        this.endpoint = "";
        this.project = project;
        this.logstore = logstore;
    }

    public AliyunLOGSink(DataSinkType type, String name, String endpoint, String project, String logstore, String accessKeyId, String accessKeySecret) {
        super(type);
        this.name = name;
        this.endpoint = endpoint;
        this.project = project;
        this.logstore = logstore;
        this.accessKeyId = accessKeyId;
        this.accessKeySecret = accessKeySecret;
    }

    public AliyunLOGSink(DataSinkType type, String name, String endpoint, String project, String logstore, String roleArn) {
        super(type);
        this.name = name;
        this.endpoint = endpoint;
        this.project = project;
        this.logstore = logstore;
        this.roleArn = roleArn;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getProject() {
        return project;
    }

    public void setProject(String project) {
        this.project = project;
    }

    public String getLogstore() {
        return logstore;
    }

    public void setLogstore(String logstore) {
        this.logstore = logstore;
    }

    public String getAccessKeyId() {
        return accessKeyId;
    }

    public void setAccessKeyId(String accessKeyId) {
        this.accessKeyId = accessKeyId;
    }

    public String getAccessKeySecret() {
        return accessKeySecret;
    }

    public void setAccessKeySecret(String accessKeySecret) {
        this.accessKeySecret = accessKeySecret;
    }

    public String getEndpoint() {
        return endpoint;
    }

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

    public void setRoleArn(String roleArn) {
        this.roleArn = roleArn;
    }

    public String getRoleArn() {
        return roleArn;
    }

    public List getDatasets() {
        return datasets;
    }

    public void setDatasets(ArrayList datasets) {
        this.datasets = datasets;
    }


    public void deserialize(JSONObject value) {
        name = value.getString("name");
        if (value.containsKey("endpoint")) {
            endpoint = value.getString("endpoint");
        } else {
            endpoint = "";
        }
        JSONArray datasetsAsJson = value.getJSONArray("datasets");
        if (datasetsAsJson != null) {
            datasets = new ArrayList(datasetsAsJson.size());
            for (int i = 0; i < datasetsAsJson.size(); ++i) {
                datasets.add(datasetsAsJson.getString(i));
            }
        } else {
            datasets = null;
        }
        project = value.getString("project");
        logstore = value.getString("logstore");
        accessKeyId = value.getString("accessKeyId");
        accessKeySecret = value.getString("accessKeySecret");
        roleArn = value.getString("roleArn");
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        AliyunLOGSink sink = (AliyunLOGSink) o;
        if (getName() != null ? !getName().equals(sink.getName()) : sink.getName() != null) {
            return false;
        }
        if (getEndpoint() != null ? !getEndpoint().equals(sink.getEndpoint()) : sink.getEndpoint() != null) {
            return false;
        }
        if (getProject() != null ? !getProject().equals(sink.getProject()) : sink.getProject() != null) {
            return false;
        }
        if (getLogstore() != null ? !getLogstore().equals(sink.getLogstore()) : sink.getLogstore() != null) {
            return false;
        }
        if (getAccessKeyId() != null ? !getAccessKeyId().equals(sink.getAccessKeyId()) : sink.getAccessKeyId() != null) {
            return false;
        }
        if (getDatasets() != null ? !getDatasets().equals(sink.getDatasets()) : sink.getDatasets() != null) {
            return false;
        }
        return getAccessKeySecret() != null ? getAccessKeySecret().equals(sink.getAccessKeySecret()) : sink.getAccessKeySecret() == null;
    }

    @Override
    public int hashCode() {
        int result = getName() != null ? getName().hashCode() : 0;
        result = 31 * result + (getEndpoint() != null ? getEndpoint().hashCode() : 0);
        result = 31 * result + (getProject() != null ? getProject().hashCode() : 0);
        result = 31 * result + (getLogstore() != null ? getLogstore().hashCode() : 0);
        result = 31 * result + (getAccessKeyId() != null ? getAccessKeyId().hashCode() : 0);
        result = 31 * result + (getAccessKeySecret() != null ? getAccessKeySecret().hashCode() : 0);
        result = 31 * result + (getDatasets() != null ? getDatasets().hashCode() : 0);
        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy