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

org.plasma.runtime.RuntimeConfiguration Maven / Gradle / Ivy

//
// 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: 2018.03.20 at 04:25:57 PM MST 
//


package org.plasma.runtime;

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


/**
 * 

Java class for RuntimeConfiguration complex type. * *

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

 * <complexType name="RuntimeConfiguration">
 *   <complexContent>
 *     <extension base="{http://www.plasma.org/runtime}Configuration">
 *       <sequence>
 *         <element name="SDO" type="{http://www.plasma.org/runtime}SDO"/>
 *         <element name="Repository" type="{http://www.plasma.org/runtime}Repository" maxOccurs="unbounded"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RuntimeConfiguration", propOrder = { "sdo", "repositories" }) @XmlRootElement(name = "RuntimeConfiguration") public class RuntimeConfiguration extends Configuration { @XmlElement(name = "SDO", required = true) protected SDO sdo; @XmlElement(name = "Repository", required = true) protected List repositories; /** * Gets the value of the sdo property. * * @return * possible object is * {@link SDO } * */ public SDO getSDO() { return sdo; } /** * Sets the value of the sdo property. * * @param value * allowed object is * {@link SDO } * */ public void setSDO(SDO value) { this.sdo = value; } /** * Gets the value of the repositories 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 repositories property. * *

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

     *    getRepositories().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy