org.xlcloud.xsa.ExecParams Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.05.12 at 12:16:07 PM CEST
//
package org.xlcloud.xsa;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
*
* Job additional execution parameters.
*
*
* Java class for ExecParams complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ExecParams">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="inputFile" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="numCores" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="numNodes" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="wallTime" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="userParams" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExecParams")
public class ExecParams {
@XmlAttribute
protected String inputFile;
@XmlAttribute
protected Integer numCores;
@XmlAttribute
protected Integer numNodes;
@XmlAttribute
protected String wallTime;
@XmlAttribute
protected String userParams;
/**
* Gets the value of the inputFile property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInputFile() {
return inputFile;
}
/**
* Sets the value of the inputFile property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInputFile(String value) {
this.inputFile = value;
}
/**
* Gets the value of the numCores property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumCores() {
return numCores;
}
/**
* Sets the value of the numCores property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumCores(Integer value) {
this.numCores = value;
}
/**
* Gets the value of the numNodes property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumNodes() {
return numNodes;
}
/**
* Sets the value of the numNodes property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumNodes(Integer value) {
this.numNodes = value;
}
/**
* Gets the value of the wallTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWallTime() {
return wallTime;
}
/**
* Sets the value of the wallTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWallTime(String value) {
this.wallTime = value;
}
/**
* Gets the value of the userParams property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserParams() {
return userParams;
}
/**
* Sets the value of the userParams property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserParams(String value) {
this.userParams = value;
}
}