org.plasma.runtime.DataAccessProvider 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: 2017.11.25 at 12:40:32 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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DataAccessProvider complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DataAccessProvider">
* <complexContent>
* <extension base="{http://www.plasma.org/runtime}Configuration">
* <sequence>
* <element name="SequenceConfiguration" type="{http://www.plasma.org/runtime}SequenceConfiguration" minOccurs="0"/>
* <element name="Concurrency" type="{http://www.plasma.org/runtime}Concurrency" minOccurs="0"/>
* <element name="NamespaceLink" type="{http://www.plasma.org/runtime}NamespaceLink" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.plasma.org/runtime}DataAccessProviderName" />
* <attribute name="className" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DataAccessProvider", propOrder = {
"sequenceConfiguration",
"concurrency",
"namespaceLinks"
})
@XmlRootElement(name = "DataAccessProvider")
public class DataAccessProvider
extends Configuration
{
@XmlElement(name = "SequenceConfiguration")
protected SequenceConfiguration sequenceConfiguration;
@XmlElement(name = "Concurrency")
protected Concurrency concurrency;
@XmlElement(name = "NamespaceLink")
protected List namespaceLinks;
@XmlAttribute(name = "name", required = true)
protected DataAccessProviderName name;
@XmlAttribute(name = "className", required = true)
protected String className;
/**
* Gets the value of the sequenceConfiguration property.
*
* @return
* possible object is
* {@link SequenceConfiguration }
*
*/
public SequenceConfiguration getSequenceConfiguration() {
return sequenceConfiguration;
}
/**
* Sets the value of the sequenceConfiguration property.
*
* @param value
* allowed object is
* {@link SequenceConfiguration }
*
*/
public void setSequenceConfiguration(SequenceConfiguration value) {
this.sequenceConfiguration = value;
}
/**
* Gets the value of the concurrency property.
*
* @return
* possible object is
* {@link Concurrency }
*
*/
public Concurrency getConcurrency() {
return concurrency;
}
/**
* Sets the value of the concurrency property.
*
* @param value
* allowed object is
* {@link Concurrency }
*
*/
public void setConcurrency(Concurrency value) {
this.concurrency = value;
}
/**
* Gets the value of the namespaceLinks 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 namespaceLinks property.
*
*
* For example, to add a new item, do as follows:
*
* getNamespaceLinks().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NamespaceLink }
*
*
*/
public List getNamespaceLinks() {
if (namespaceLinks == null) {
namespaceLinks = new ArrayList();
}
return this.namespaceLinks;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link DataAccessProviderName }
*
*/
public DataAccessProviderName getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link DataAccessProviderName }
*
*/
public void setName(DataAccessProviderName value) {
this.name = value;
}
/**
* Gets the value of the className property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClassName() {
return className;
}
/**
* Sets the value of the className property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClassName(String value) {
this.className = value;
}
}