org.plasma.provisioning.NamedElement 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:32 AM EDT
//
package org.plasma.provisioning;
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;
/**
* Java class for NamedElement complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NamedElement">
* <complexContent>
* <extension base="{http://www.servicelabs.org/plasma/provisioning}Element">
* <sequence>
* <element ref="{http://www.servicelabs.org/plasma/provisioning}Alias" minOccurs="0"/>
* <element ref="{http://www.servicelabs.org/plasma/provisioning}Derivation" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NamedElement", propOrder = {
"alias",
"derivation"
})
public abstract class NamedElement
extends Element
{
@XmlElement(name = "Alias")
protected Alias alias;
@XmlElement(name = "Derivation")
protected Derivation derivation;
@XmlAttribute(name = "name", required = true)
protected String name;
/**
* Gets the value of the alias property.
*
* @return
* possible object is
* {@link Alias }
*
*/
public Alias getAlias() {
return alias;
}
/**
* Sets the value of the alias property.
*
* @param value
* allowed object is
* {@link Alias }
*
*/
public void setAlias(Alias value) {
this.alias = value;
}
/**
* Gets the value of the derivation property.
*
* @return
* possible object is
* {@link Derivation }
*
*/
public Derivation getDerivation() {
return derivation;
}
/**
* Sets the value of the derivation property.
*
* @param value
* allowed object is
* {@link Derivation }
*
*/
public void setDerivation(Derivation value) {
this.derivation = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy