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

org.jboss.as.console.client.shared.jvm.model.CompositeVMMetric Maven / Gradle / Ivy

Go to download

Bundles the core AS7 console as a GWT module. Includes minor customizations to support extensions.

There is a newer version: 0.7.0.Final
Show newest version
package org.jboss.as.console.client.shared.jvm.model;

/**
 * @author Heiko Braun
 * @date 10/7/11
 */
public class CompositeVMMetric {

    HeapMetric nonHeap;
    HeapMetric heap;
    OSMetric os;
    RuntimeMetric runtime;
    ThreadMetric threads;

    public CompositeVMMetric() {
    }

    public CompositeVMMetric(HeapMetric heap, OSMetric os, RuntimeMetric runtime, ThreadMetric threads) {
        this.heap = heap;
        this.os = os;
        this.runtime = runtime;
        this.threads = threads;
    }

    public void setHeap(HeapMetric heap) {
        this.heap = heap;
    }

    public HeapMetric getNonHeap() {
        return nonHeap;
    }

    public void setNonHeap(HeapMetric nonHeap) {
        this.nonHeap = nonHeap;
    }

    public void setOs(OSMetric os) {
        this.os = os;
    }

    public void setRuntime(RuntimeMetric runtime) {
        this.runtime = runtime;
    }

    public void setThreads(ThreadMetric threads) {
        this.threads = threads;
    }

    public HeapMetric getHeap() {
        return heap;
    }

    public OSMetric getOs() {
        return os;
    }

    public RuntimeMetric getRuntime() {
        return runtime;
    }

    public ThreadMetric getThreads() {
        return threads;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy