fr.insee.eno.parameters.ENOParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eno-core Show documentation
Show all versions of eno-core Show documentation
Eno is a tool that generates survey questionnaires starting from their formal description in DDI
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.10.10 at 12:34:23 PM UTC
//
package fr.insee.eno.parameters;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="Pipeline" type="{}Pipeline"/>
* <element name="Mode" type="{}Mode" minOccurs="0"/>
* <element name="Parameters" type="{}Parameters"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
@XmlRootElement(name = "ENOParameters")
public class ENOParameters {
@XmlElement(name = "Pipeline", required = true)
protected Pipeline pipeline;
@XmlElement(name = "Mode")
@XmlSchemaType(name = "token")
protected Mode mode;
@XmlElement(name = "Parameters", required = true)
protected Parameters parameters;
/**
* Gets the value of the pipeline property.
*
* @return
* possible object is
* {@link Pipeline }
*
*/
public Pipeline getPipeline() {
return pipeline;
}
/**
* Sets the value of the pipeline property.
*
* @param value
* allowed object is
* {@link Pipeline }
*
*/
public void setPipeline(Pipeline value) {
this.pipeline = value;
}
/**
* Gets the value of the mode property.
*
* @return
* possible object is
* {@link Mode }
*
*/
public Mode getMode() {
return mode;
}
/**
* Sets the value of the mode property.
*
* @param value
* allowed object is
* {@link Mode }
*
*/
public void setMode(Mode value) {
this.mode = value;
}
/**
* Gets the value of the parameters property.
*
* @return
* possible object is
* {@link Parameters }
*
*/
public Parameters getParameters() {
return parameters;
}
/**
* Sets the value of the parameters property.
*
* @param value
* allowed object is
* {@link Parameters }
*
*/
public void setParameters(Parameters value) {
this.parameters = value;
}
}