All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.wustl.nrg.arc.PipelineData Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.09.16 at 05:54:20 PM EDT 
//


package edu.wustl.nrg.arc;

/*-
 * #%L
 * XNAT Data Source Backend
 * %%
 * Copyright (C) 2015 - 2016 Emory University
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for pipelineData complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="pipelineData">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="displayText" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="parameters" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence minOccurs="0">
 *                   <element name="parameter" type="{http://nrg.wustl.edu/arc}pipelineParameterData" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="customwebpage" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "pipelineData", propOrder = { "displayText", "name", "location", "description", "parameters", "customwebpage" }) @XmlSeeAlso({ edu.wustl.nrg.arc.Project.Pipelines.Descendants.Descendant.Pipeline.class, edu.wustl.nrg.arc.Project.Pipelines.Pipeline.class }) public class PipelineData { @XmlElement(required = true) protected String displayText; @XmlElement(required = true) protected String name; protected String location; @XmlElement(required = true) protected String description; protected PipelineData.Parameters parameters; protected Object customwebpage; /** * Gets the value of the displayText property. * * @return * possible object is * {@link String } * */ public String getDisplayText() { return displayText; } /** * Sets the value of the displayText property. * * @param value * allowed object is * {@link String } * */ public void setDisplayText(String value) { this.displayText = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the location property. * * @return * possible object is * {@link String } * */ public String getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link String } * */ public void setLocation(String value) { this.location = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the parameters property. * * @return * possible object is * {@link PipelineData.Parameters } * */ public PipelineData.Parameters getParameters() { return parameters; } /** * Sets the value of the parameters property. * * @param value * allowed object is * {@link PipelineData.Parameters } * */ public void setParameters(PipelineData.Parameters value) { this.parameters = value; } /** * Gets the value of the customwebpage property. * * @return * possible object is * {@link Object } * */ public Object getCustomwebpage() { return customwebpage; } /** * Sets the value of the customwebpage property. * * @param value * allowed object is * {@link Object } * */ public void setCustomwebpage(Object value) { this.customwebpage = value; } /** *

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">
     *       <sequence minOccurs="0">
     *         <element name="parameter" type="{http://nrg.wustl.edu/arc}pipelineParameterData" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "parameter" }) public static class Parameters { protected List parameter; /** * Gets the value of the parameter 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 parameter property. * *

* For example, to add a new item, do as follows: *

         *    getParameter().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PipelineParameterData } * * */ public List getParameter() { if (parameter == null) { parameter = new ArrayList(); } return this.parameter; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy