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

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

package com.aliyun.openservices.log.response;

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

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

public class ListDashboardResponse extends Response {

	private static final long serialVersionUID = 3511511842342055252L;
	protected int count = 0;
	protected int total = 0;
	protected List dashboards = new ArrayList();

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

	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 getDashboards() {
		return dashboards;
	}

	public void setDashboards(List dashboards) {
		this.dashboards = new ArrayList();
		for (Dashboard dashboard : dashboards) {
			this.dashboards.add(dashboard);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy