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

org.rhq.plugins.perftest.scenario.SimpleResourceGenerator Maven / Gradle / Ivy

//
// 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 simpleResourceGenerator complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="simpleResourceGenerator">
 *   <complexContent>
 *     <extension base="{urn:xmlns:jboss.org:rhq-perftest}resourceGenerator">
 *       <attribute name="numberOfResources" 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 = "simpleResourceGenerator") public class SimpleResourceGenerator extends ResourceGenerator { @XmlAttribute protected Integer numberOfResources; @XmlAttribute protected String property; /** * Gets the value of the numberOfResources property. * * @return * possible object is * {@link Integer } * */ public Integer getNumberOfResources() { return numberOfResources; } /** * Sets the value of the numberOfResources property. * * @param value * allowed object is * {@link Integer } * */ public void setNumberOfResources(Integer value) { this.numberOfResources = 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