org.plasma.runtime.SDO 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: 2020.02.10 at 02:01:29 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 SDO complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SDO">
* <complexContent>
* <extension base="{http://www.plasma.org/runtime}Configuration">
* <sequence>
* <element name="GlobalProvisioning" type="{http://www.plasma.org/runtime}GlobalProvisioning"/>
* <element name="DefaultNamespace" type="{http://www.plasma.org/runtime}Namespace" minOccurs="0"/>
* <element name="Namespace" type="{http://www.plasma.org/runtime}Namespace" maxOccurs="unbounded" minOccurs="0"/>
* <element name="DataAccessService" type="{http://www.plasma.org/runtime}DataAccessService" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SDO", propOrder = {
"globalProvisioning",
"defaultNamespace",
"namespaces",
"dataAccessServices"
})
@XmlRootElement(name = "SDO")
public class SDO
extends Configuration
{
@XmlElement(name = "GlobalProvisioning", required = true)
protected GlobalProvisioning globalProvisioning;
@XmlElement(name = "DefaultNamespace")
protected Namespace defaultNamespace;
@XmlElement(name = "Namespace")
protected List namespaces;
@XmlElement(name = "DataAccessService")
protected List dataAccessServices;
/**
* Gets the value of the globalProvisioning property.
*
* @return
* possible object is
* {@link GlobalProvisioning }
*
*/
public GlobalProvisioning getGlobalProvisioning() {
return globalProvisioning;
}
/**
* Sets the value of the globalProvisioning property.
*
* @param value
* allowed object is
* {@link GlobalProvisioning }
*
*/
public void setGlobalProvisioning(GlobalProvisioning value) {
this.globalProvisioning = value;
}
/**
* Gets the value of the defaultNamespace property.
*
* @return
* possible object is
* {@link Namespace }
*
*/
public Namespace getDefaultNamespace() {
return defaultNamespace;
}
/**
* Sets the value of the defaultNamespace property.
*
* @param value
* allowed object is
* {@link Namespace }
*
*/
public void setDefaultNamespace(Namespace value) {
this.defaultNamespace = value;
}
/**
* Gets the value of the namespaces 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 namespaces property.
*
*
* For example, to add a new item, do as follows:
*
* getNamespaces().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Namespace }
*
*
*/
public List getNamespaces() {
if (namespaces == null) {
namespaces = new ArrayList();
}
return this.namespaces;
}
/**
* Gets the value of the dataAccessServices 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 dataAccessServices property.
*
*
* For example, to add a new item, do as follows:
*
* getDataAccessServices().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DataAccessService }
*
*
*/
public List getDataAccessServices() {
if (dataAccessServices == null) {
dataAccessServices = new ArrayList();
}
return this.dataAccessServices;
}
}