org.plasma.config.PlasmaConfiguration Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.10.17 at 11:26:31 AM EDT
//
package org.plasma.config;
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 PlasmaConfiguration complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PlasmaConfiguration">
* <complexContent>
* <extension base="{http://www.plasma.org/config}Configuration">
* <sequence>
* <element name="SDO" type="{http://www.plasma.org/config}SDO"/>
* <element name="Repository" type="{http://www.plasma.org/config}Repository"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PlasmaConfiguration", propOrder = {
"sdo",
"repository"
})
@XmlRootElement(name = "PlasmaConfiguration")
public class PlasmaConfiguration
extends Configuration
{
@XmlElement(name = "SDO", required = true)
protected SDO sdo;
@XmlElement(name = "Repository", required = true)
protected Repository repository;
/**
* 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 repository property.
*
* @return
* possible object is
* {@link Repository }
*
*/
public Repository getRepository() {
return repository;
}
/**
* Sets the value of the repository property.
*
* @param value
* allowed object is
* {@link Repository }
*
*/
public void setRepository(Repository value) {
this.repository = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy