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

com.aliyun.openservices.log.request.DeleteTopostoreRelationRequest Maven / Gradle / Ivy

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

import java.util.List;
import java.util.Map;

import com.aliyun.openservices.log.common.Consts;
import com.aliyun.openservices.log.util.Utils;

public class DeleteTopostoreRelationRequest extends TopostoreRequest{
    private String topostoreName;
    private List topostoreRelationIds;

    public DeleteTopostoreRelationRequest(String topostoreName, List relationIds) {
        this.topostoreName = topostoreName;
        this.topostoreRelationIds = relationIds;
    }

    public String getTopostoreName() {
        return this.topostoreName;
    }

    public void setTopostoreName(String topostoreName) {
        this.topostoreName = topostoreName;
    }

    public List getTopostoreRelationIds() {
        return this.topostoreRelationIds;
    }

    public void setTopostoreRelationIds(List topostoreRelationIds) {
        this.topostoreRelationIds = topostoreRelationIds;
    }

    @Override
    public Map GetAllParams() {
        SetParam(Consts.TOPOSTORE_RELATION_ID_LIST, Utils.join(",", topostoreRelationIds));
        return super.GetAllParams();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy