Package org.cyclos.impl.system
Class SystemMonitorSnapshot
- java.lang.Object
-
- org.cyclos.impl.system.SystemMonitorSnapshot
-
public class SystemMonitorSnapshot extends Object
Contains a snapshot of the system.
-
-
Constructor Summary
Constructors Constructor Description SystemMonitorSnapshot()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BackgroundTaskData>getBackgroundTasks()List<CacheVO>getCaches()List<DatabaseUpgradeData>getDatabaseUpgrades()List<ErrorLog>getErrorLogs()List<RecurringTaskData>getRecurringTasks()SystemInformationDatagetSystemInformation()voidsetBackgroundTasks(List<BackgroundTaskData> backgroundTasks)voidsetCaches(List<CacheVO> caches)voidsetDatabaseUpgrades(List<DatabaseUpgradeData> databaseUpgrades)voidsetErrorLogs(List<ErrorLog> errorLogs)voidsetRecurringTasks(List<RecurringTaskData> recurringTasks)voidsetSystemInformation(SystemInformationData systemInformation)
-
-
-
Method Detail
-
getBackgroundTasks
public List<BackgroundTaskData> getBackgroundTasks()
-
getDatabaseUpgrades
public List<DatabaseUpgradeData> getDatabaseUpgrades()
-
getRecurringTasks
public List<RecurringTaskData> getRecurringTasks()
-
getSystemInformation
public SystemInformationData getSystemInformation()
-
setBackgroundTasks
public void setBackgroundTasks(List<BackgroundTaskData> backgroundTasks)
-
setDatabaseUpgrades
public void setDatabaseUpgrades(List<DatabaseUpgradeData> databaseUpgrades)
-
setRecurringTasks
public void setRecurringTasks(List<RecurringTaskData> recurringTasks)
-
setSystemInformation
public void setSystemInformation(SystemInformationData systemInformation)
-
-