blob: c960c62caf25780fd6725076345926bd3fd71f56 [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2011.03.15 at 06:57:07 PM CDT
//
package org.eclipse.ptp.rm.jaxb.core.data;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
*
* 'ValueFrom' refers to properties in the resource manager environment.
*
*
* <p>
* Java class for environment-variable complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="environment-variable">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="valueFrom" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="variableName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "environment-variable")
public class EnvironmentVariable {
@XmlAttribute(required = true)
protected String valueFrom;
@XmlAttribute(required = true)
protected String variableName;
/**
* Gets the value of the valueFrom property.
*
* @return possible object is {@link String }
*
*/
public String getValueFrom() {
return valueFrom;
}
/**
* Gets the value of the variableName property.
*
* @return possible object is {@link String }
*
*/
public String getVariableName() {
return variableName;
}
/**
* Sets the value of the valueFrom property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setValueFrom(String value) {
this.valueFrom = value;
}
/**
* Sets the value of the variableName property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setVariableName(String value) {
this.variableName = value;
}
}