jdplus.x13.base.xml.XmlRegArimaRequest Maven / Gradle / Ivy
Show all versions of jdplus-x13-base-xml Show documentation
/*
* Copyright 2016 National Bank of Belgium
*
* Licensed under the EUPL, Version 1.1 or – as soon they will be approved
* by the European Commission - subsequent versions of the EUPL (the "Licence");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at:
*
* http://ec.europa.eu/idabc/eupl
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the Licence is distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Licence for the specific language governing permissions and
* limitations under the Licence.
*/
package jdplus.x13.base.xml;
import jdplus.toolkit.base.xml.legacy.processing.XmlProcessingContext;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlList;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RegArimaRequestType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RegArimaRequestType">
* <complexContent>
* <extension base="{ec/eurostat/jdemetra/sa/tramoseats}RegArimaAtomicRequestType">
* <sequence>
* <element name="Context" type="{ec/eurostat/jdemetra/core}ProcessingContextType"/>
* <element name="OutputFilter" type="{http://www.w3.org/2001/XMLSchema}NMTOKENS"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name="RegArimaRequest")
@XmlType(name = "RegArimaRequestType", propOrder = {
"context",
"outputFilter"
})
public class XmlRegArimaRequest
extends XmlRegArimaAtomicRequest
{
@XmlElement(name = "Context")
protected XmlProcessingContext context;
@XmlList
@XmlElement(name = "OutputFilter", required = true)
protected List outputFilter;
@XmlAttribute(name="flat")
protected Boolean flat;
/**
* Gets the value of the context property.
*
* @return
* possible object is
* {@link ProcessingContextType }
*
*/
public XmlProcessingContext getContext() {
return context;
}
/**
* Sets the value of the context property.
*
* @param value
* allowed object is
* {@link ProcessingContextType }
*
*/
public void setContext(XmlProcessingContext value) {
this.context = value;
}
/**
* Gets the value of the outputFilter property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the outputFilter property.
*
*
* For example, to add a new item, do as follows:
*
* getOutputFilter().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getOutputFilter() {
if (outputFilter == null) {
outputFilter = new ArrayList<>();
}
return this.outputFilter;
}
/**
* @return the flat
*/
public boolean getFlat() {
return flat != null ? flat : false;
}
/**
* @param flat the flat to set
*/
public void setFlat(Boolean flat) {
this.flat = flat;
}
}