com.ibm.jbatch.jsl.model.Next Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vIBM 2.2.3-11/28/2011 06:21 AM(foreman)-
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.03.18 at 06:45:00 PM EDT
//
package com.ibm.jbatch.jsl.model;
import javax.annotation.Generated;
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 Next complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Next">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="on" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="to" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Next")
@Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-")
/**
* Modified post-XJC-gen by custom JSR352 RI build logic
* since we can't seem to get JAXB's XJC to generate
* elements implementing a common interface.
*
* This custom logic adds the interface implementation :
* implements com.ibm.jbatch.container.jsl.TransitionElement
*/
public class Next implements com.ibm.jbatch.container.jsl.TransitionElement {
@XmlAttribute(name = "on", required = true)
@Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-")
protected String on;
@XmlAttribute(name = "to", required = true)
@Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-")
protected String to;
/**
* Gets the value of the on property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-")
public String getOn() {
return on;
}
/**
* Sets the value of the on property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-")
public void setOn(String value) {
this.on = value;
}
/**
* Gets the value of the to property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-")
public String getTo() {
return to;
}
/**
* Sets the value of the to property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-")
public void setTo(String value) {
this.to = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy