presto-connector/src/main/java/com/facebook/presto/maxcompute/MaxComputeConfig.java [20:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class MaxComputeConfig
        implements Serializable
{
    private String project;
    private String accessId;
    private String accessKey;
    private String endpoint;
    private String quotaName;

    public String getProject()
    {
        return project;
    }

    @Config("odps.project.name")
    public MaxComputeConfig setProject(String project)
    {
        this.project = project;
        return this;
    }

    public String getAccessId()
    {
        return accessId;
    }

    @Config("odps.access.id")
    public MaxComputeConfig setAccessId(String accessId)
    {
        this.accessId = accessId;
        return this;
    }

    public String getAccessKey()
    {
        return accessKey;
    }

    @Config("odps.access.key")
    public MaxComputeConfig setAccessKey(String accessKey)
    {
        this.accessKey = accessKey;
        return this;
    }

    public String getEndPoint()
    {
        return endpoint;
    }

    @Config("odps.end.point")
    public MaxComputeConfig setEndPoint(String endpoint)
    {
        this.endpoint = endpoint;
        return this;
    }

    public String getQuotaName()
    {
        return quotaName;
    }

    @Config("odps.quota.name")
    public MaxComputeConfig setQuotaName(String quotaName)
    {
        this.quotaName = quotaName;
        return this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



trino-connector/src/main/java/io/trino/plugin/maxcompute/MaxComputeConfig.java [20:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class MaxComputeConfig
        implements Serializable
{
    private String project;
    private String accessId;
    private String accessKey;
    private String endpoint;
    private String quotaName;

    public String getProject()
    {
        return project;
    }

    @Config("odps.project.name")
    public MaxComputeConfig setProject(String project)
    {
        this.project = project;
        return this;
    }

    public String getAccessId()
    {
        return accessId;
    }

    @Config("odps.access.id")
    public MaxComputeConfig setAccessId(String accessId)
    {
        this.accessId = accessId;
        return this;
    }

    public String getAccessKey()
    {
        return accessKey;
    }

    @Config("odps.access.key")
    public MaxComputeConfig setAccessKey(String accessKey)
    {
        this.accessKey = accessKey;
        return this;
    }

    public String getEndPoint()
    {
        return endpoint;
    }

    @Config("odps.end.point")
    public MaxComputeConfig setEndPoint(String endpoint)
    {
        this.endpoint = endpoint;
        return this;
    }

    public String getQuotaName()
    {
        return quotaName;
    }

    @Config("odps.quota.name")
    public MaxComputeConfig setQuotaName(String quotaName)
    {
        this.quotaName = quotaName;
        return this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



