All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.plasma.runtime.InterfaceProvisioning 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 interfaces under this context
 * 
 * 

Java class for InterfaceProvisioning complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="InterfaceProvisioning">
 *   <complexContent>
 *     <extension base="{http://www.plasma.org/runtime}ClassProvisioning">
 *       <attribute name="propertyNameStyle" type="{http://www.plasma.org/runtime}PropertyNameStyle" default="enums" />
 *       <attribute name="enumSource" type="{http://www.plasma.org/runtime}EnumSource" default="derived" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InterfaceProvisioning") @XmlRootElement(name = "InterfaceProvisioning") public class InterfaceProvisioning extends ClassProvisioning { @XmlAttribute(name = "propertyNameStyle") protected PropertyNameStyle propertyNameStyle; @XmlAttribute(name = "enumSource") protected EnumSource enumSource; /** * Gets the value of the propertyNameStyle property. * * @return * possible object is * {@link PropertyNameStyle } * */ public PropertyNameStyle getPropertyNameStyle() { if (propertyNameStyle == null) { return PropertyNameStyle.ENUMS; } else { return propertyNameStyle; } } /** * Sets the value of the propertyNameStyle property. * * @param value * allowed object is * {@link PropertyNameStyle } * */ public void setPropertyNameStyle(PropertyNameStyle value) { this.propertyNameStyle = value; } /** * Gets the value of the enumSource property. * * @return * possible object is * {@link EnumSource } * */ public EnumSource getEnumSource() { if (enumSource == null) { return EnumSource.DERIVED; } else { return enumSource; } } /** * Sets the value of the enumSource property. * * @param value * allowed object is * {@link EnumSource } * */ public void setEnumSource(EnumSource value) { this.enumSource = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy