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

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

package com.aliyun.openservices.log.response;

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

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

public class ListResourceResponse extends Response {

    protected int count = 0;
    protected int total = 0;
    protected List resources = new ArrayList();

    public int getCount() {
        return count;
    }

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

    public int getTotal() {
        return total;
    }

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

    public List getResources() {
        return resources;
    }

    public void setResources(List resources) {
        this.resources = resources;
    }

    public ListResourceResponse(Map headers, int count, int total, List resources) {
        super(headers);
        setCount(count);
        setTotal(total);
        this.resources = resources;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy