automation.library.conversion2jmx.common.model.jmx.JmxFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library-conversion2jmx Show documentation
Show all versions of library-conversion2jmx Show documentation
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