org.plasma.metamodel.ClassProvisioning Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plasma-metamodel Show documentation
Show all versions of plasma-metamodel Show documentation
The Plasma Metamodel Module
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.07.01 at 02:31:06 PM MST
//
package org.plasma.metamodel;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* The code generation meta data associated with a class
*
* Java class for ClassProvisioning complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClassProvisioning">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="className" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="originatingClassName" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClassProvisioning")
@XmlRootElement(name = "ClassProvisioning")
public class ClassProvisioning {
@XmlAttribute(name = "className", required = true)
protected String className;
@XmlAttribute(name = "originatingClassName")
protected String originatingClassName;
/**
* 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;
}
/**
* Gets the value of the originatingClassName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOriginatingClassName() {
return originatingClassName;
}
/**
* Sets the value of the originatingClassName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOriginatingClassName(String value) {
this.originatingClassName = value;
}
}