
org.rhq.plugins.perftest.scenario.SimpleContentGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhq-perftest-plugin Show documentation
Show all versions of rhq-perftest-plugin Show documentation
a plugin for performance testing
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.12.02 at 06:01:06 PM EST
//
package org.rhq.plugins.perftest.scenario;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for simpleContentGenerator complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="simpleContentGenerator">
* <complexContent>
* <extension base="{urn:xmlns:jboss.org:rhq-perftest}contentGenerator">
* <attribute name="numberOfPackages" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="property" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "simpleContentGenerator")
public class SimpleContentGenerator
extends ContentGenerator
{
@XmlAttribute
protected Integer numberOfPackages;
@XmlAttribute
protected String property;
/**
* Gets the value of the numberOfPackages property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumberOfPackages() {
return numberOfPackages;
}
/**
* Sets the value of the numberOfPackages property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumberOfPackages(Integer value) {
this.numberOfPackages = value;
}
/**
* Gets the value of the property property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProperty() {
return property;
}
/**
* Sets the value of the property property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProperty(String value) {
this.property = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy