package com.rapid_i.repository.wsimport; 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for processContextWrapper complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="processContextWrapper"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="inputRepositoryLocations" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * <element name="macros" type="{http://service.web.rapidanalytics.de/}macroDefinition" maxOccurs="unbounded" minOccurs="0"/> * <element name="outputRepositoryLocations" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "processContextWrapper", propOrder = { "inputRepositoryLocations", "macros", "outputRepositoryLocations" }) public class ProcessContextWrapper { @XmlElement(nillable = true) protected List<String> inputRepositoryLocations; @XmlElement(nillable = true) protected List<MacroDefinition> macros; @XmlElement(nillable = true) protected List<String> outputRepositoryLocations; /** * Gets the value of the inputRepositoryLocations property. * * <p> * 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 <CODE>set</CODE> method for the inputRepositoryLocations property. * * <p> * For example, to add a new item, do as follows: * <pre> * getInputRepositoryLocations().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getInputRepositoryLocations() { if (inputRepositoryLocations == null) { inputRepositoryLocations = new ArrayList<String>(); } return this.inputRepositoryLocations; } /** * Gets the value of the macros property. * * <p> * 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 <CODE>set</CODE> method for the macros property. * * <p> * For example, to add a new item, do as follows: * <pre> * getMacros().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MacroDefinition } * * */ public List<MacroDefinition> getMacros() { if (macros == null) { macros = new ArrayList<MacroDefinition>(); } return this.macros; } /** * Gets the value of the outputRepositoryLocations property. * * <p> * 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 <CODE>set</CODE> method for the outputRepositoryLocations property. * * <p> * For example, to add a new item, do as follows: * <pre> * getOutputRepositoryLocations().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getOutputRepositoryLocations() { if (outputRepositoryLocations == null) { outputRepositoryLocations = new ArrayList<String>(); } return this.outputRepositoryLocations; } }