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

com.aliyun.openservices.log.response.ListTopostoreNodeResponse Maven / Gradle / Ivy

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

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

import com.aliyun.openservices.log.common.TopostoreNode;

public class ListTopostoreNodeResponse extends Response{

    private List topostoreNodes;
    private int count = 0;
    private int total = 0;


    public ListTopostoreNodeResponse(Map headers, 
        List topostoreNodes,int count, int total)  {
        super(headers);
        this.topostoreNodes = topostoreNodes;
        this.count = count;
        this.total = total;
    }

    public List getTopostoreNodes() {
        return this.topostoreNodes;
    }

    public void setTopostoreNodes(List topostoreNodes) {
        this.topostoreNodes = topostoreNodes;
    }

    public int getTotal() {
        return this.total;
    }

    public void setTotal(int total) {
        this.total = total;
    }

    public int getCount() {
        return this.count;
    }

    public void setCount(int count) {
        this.count = count;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy