
com.xcase.integrate.objects.SystemCPULoadAverageHistory Maven / Gradle / Ivy
/**
* Copyright 2016 Xcase All rights reserved.
*/
package com.xcase.integrate.objects;
import java.util.List;
import javax.xml.bind.annotation.*;
/**
*
* @author martinpg
*/
@XmlRootElement(name = "cpu_load_avgs")
@XmlAccessorType(XmlAccessType.FIELD)
public class SystemCPULoadAverageHistory {
@XmlElement(name = "cpu_load_avg")
public List cpuLoadAverageList;
public List getAgentActivityList() {
return this.cpuLoadAverageList;
}
public void setAgentActivityList(List cpuLoadAverageList) {
this.cpuLoadAverageList = cpuLoadAverageList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy