org.plasma.runtime.NamespaceLink 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 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.XmlType;
/**
* Associates the parent element with an SDO namespace
*
* Java class for NamespaceLink complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NamespaceLink">
* <complexContent>
* <extension base="{http://www.plasma.org/runtime}Configuration">
* <sequence>
* <element name="Provisioning" type="{http://www.plasma.org/runtime}NamespaceProvisioning" minOccurs="0"/>
* </sequence>
* <attribute name="uri" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NamespaceLink", propOrder = {
"provisioning"
})
public class NamespaceLink
extends Configuration
{
@XmlElement(name = "Provisioning")
protected NamespaceProvisioning provisioning;
@XmlAttribute(name = "uri", required = true)
protected String uri;
/**
* Gets the value of the provisioning property.
*
* @return
* possible object is
* {@link NamespaceProvisioning }
*
*/
public NamespaceProvisioning getProvisioning() {
return provisioning;
}
/**
* Sets the value of the provisioning property.
*
* @param value
* allowed object is
* {@link NamespaceProvisioning }
*
*/
public void setProvisioning(NamespaceProvisioning value) {
this.provisioning = value;
}
/**
* Gets the value of the uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUri() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUri(String value) {
this.uri = value;
}
}