org.plasma.runtime.ImplementationProvisioning 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Specific provisioning properties for implementation classes under this context
*
* Java class for ImplementationProvisioning complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ImplementationProvisioning">
* <complexContent>
* <extension base="{http://www.plasma.org/runtime}ClassProvisioning">
* <attribute name="childPackageName" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ImplementationProvisioning")
@XmlRootElement(name = "ImplementationProvisioning")
public class ImplementationProvisioning
extends ClassProvisioning
{
@XmlAttribute(name = "childPackageName")
protected String childPackageName;
/**
* Gets the value of the childPackageName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChildPackageName() {
if (childPackageName == null) {
return "";
} else {
return childPackageName;
}
}
/**
* Sets the value of the childPackageName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChildPackageName(String value) {
this.childPackageName = value;
}
}