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

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

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

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

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

public class ListMachinesResponse  extends Response {
	/**
	 * 
	 */
	private static final long serialVersionUID = 4626637425501553843L;
	protected int total = 0;
	protected int count = 0;
	protected List machines = new ArrayList();
	
	public ListMachinesResponse(Map headers, int count, int total, List machines) {
		super(headers);
		this.total = total;
		this.count = count;
		SetMachines(machines);
	}

	public int GetTotal() {
		return total;
	}

	public int GetCount() {
		return count;
	}

	public List GetMachines() {
		return machines;
	}

	private void SetMachines(List machines) {
		this.machines = new ArrayList(machines);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy