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

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

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 DeleteTopostoreNodeRequest extends TopostoreRequest{
    private String topostoreName;
    private List topostoreNodeIds;

    public DeleteTopostoreNodeRequest(String topostoreName, List nodeIds) {
        this.topostoreName = topostoreName;
        this.topostoreNodeIds = nodeIds;
    }

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

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

    public List getTopostoreNodeIds() {
        return this.topostoreNodeIds;
    }

    public void setTopostoreNodeIds(List topostoreNodeIds) {
        this.topostoreNodeIds = topostoreNodeIds;
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy