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

automation.library.conversion2jmx.common.model.jmx.JmxFile Maven / Gradle / Ivy

Go to download

The 'conversion2jmx' library to helps creating JMeter JMX files from different sources

The newest version!
package automation.library.conversion2jmx.common.model.jmx;

import org.apache.jorphan.collections.HashTree;

public class JmxFile {
    byte[] data;
    HashTree jmxTree;

    public JmxFile(byte[] data, HashTree jmxTree) {
        this.data = data;
        this.jmxTree = jmxTree;
    }

    public byte[] getData() {
        return data;
    }

    public void setData(byte[] data) {
        this.data = data;
    }

    public HashTree getJmxTree() {
        return jmxTree;
    }

    public void setJmxTree(HashTree jmxTree) {
        this.jmxTree = jmxTree;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy