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

org.hibernate.boot.jaxb.hbm.spi.JaxbHbmAuxiliaryDatabaseObjectType Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
//
// 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: 2017.04.14 at 12:21:23 PM CEST 
//


package org.hibernate.boot.jaxb.hbm.spi;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
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 AuxiliaryDatabaseObjectType complex type. * *

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

 * <complexType name="AuxiliaryDatabaseObjectType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice>
 *           <element name="definition">
 *             <complexType>
 *               <complexContent>
 *                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                   <attribute name="class" use="required" type="{http://www.hibernate.org/xsd/orm/hbm}ClassNameType" />
 *                 </restriction>
 *               </complexContent>
 *             </complexType>
 *           </element>
 *           <sequence>
 *             <element name="create" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *             <element name="drop" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           </sequence>
 *         </choice>
 *         <element name="dialect-scope" type="{http://www.hibernate.org/xsd/orm/hbm}DialectScopeType" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AuxiliaryDatabaseObjectType", propOrder = { "definition", "create", "drop", "dialectScope" }) public class JaxbHbmAuxiliaryDatabaseObjectType implements Serializable { protected JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition definition; protected String create; protected String drop; @XmlElement(name = "dialect-scope") protected List dialectScope; /** * Gets the value of the definition property. * * @return * possible object is * {@link JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition } * */ public JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition getDefinition() { return definition; } /** * Sets the value of the definition property. * * @param value * allowed object is * {@link JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition } * */ public void setDefinition(JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition value) { this.definition = value; } /** * Gets the value of the create property. * * @return * possible object is * {@link String } * */ public String getCreate() { return create; } /** * Sets the value of the create property. * * @param value * allowed object is * {@link String } * */ public void setCreate(String value) { this.create = value; } /** * Gets the value of the drop property. * * @return * possible object is * {@link String } * */ public String getDrop() { return drop; } /** * Sets the value of the drop property. * * @param value * allowed object is * {@link String } * */ public void setDrop(String value) { this.drop = value; } /** * Gets the value of the dialectScope property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the dialectScope property. * *

* For example, to add a new item, do as follows: *

     *    getDialectScope().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JaxbHbmDialectScopeType } * * */ public List getDialectScope() { if (dialectScope == null) { dialectScope = new ArrayList(); } return this.dialectScope; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <attribute name="class" use="required" type="{http://www.hibernate.org/xsd/orm/hbm}ClassNameType" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class JaxbHbmDefinition implements Serializable { @XmlAttribute(name = "class", required = true) protected String clazz; /** * Gets the value of the clazz property. * * @return * possible object is * {@link String } * */ public String getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link String } * */ public void setClazz(String value) { this.clazz = value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy