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

org.hibernate.boot.jaxb.hbm.spi.JaxbHbmOneToManyCollectionElementType 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.3.1 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.10.08 at 09:56:04 AM BST 
//


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

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for OneToManyCollectionElementType complex type. * *

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

 * <complexType name="OneToManyCollectionElementType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="class" type="{http://www.hibernate.org/xsd/orm/hbm}ClassNameType" />
 *       <attribute name="embed-xml" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="entity-name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="node" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="not-found" type="{http://www.hibernate.org/xsd/orm/hbm}NotFoundEnum" default="exception" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OneToManyCollectionElementType") public class JaxbHbmOneToManyCollectionElementType implements Serializable { @XmlAttribute(name = "class") protected String clazz; @XmlAttribute(name = "embed-xml") protected Boolean embedXml; @XmlAttribute(name = "entity-name") protected String entityName; @XmlAttribute(name = "node") protected String node; @XmlAttribute(name = "not-found") protected JaxbHbmNotFoundEnum notFound; /** * 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; } /** * Gets the value of the embedXml property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEmbedXml() { return embedXml; } /** * Sets the value of the embedXml property. * * @param value * allowed object is * {@link Boolean } * */ public void setEmbedXml(Boolean value) { this.embedXml = value; } /** * Gets the value of the entityName property. * * @return * possible object is * {@link String } * */ public String getEntityName() { return entityName; } /** * Sets the value of the entityName property. * * @param value * allowed object is * {@link String } * */ public void setEntityName(String value) { this.entityName = value; } /** * Gets the value of the node property. * * @return * possible object is * {@link String } * */ public String getNode() { return node; } /** * Sets the value of the node property. * * @param value * allowed object is * {@link String } * */ public void setNode(String value) { this.node = value; } /** * Gets the value of the notFound property. * * @return * possible object is * {@link JaxbHbmNotFoundEnum } * */ public JaxbHbmNotFoundEnum getNotFound() { if (notFound == null) { return JaxbHbmNotFoundEnum.EXCEPTION; } else { return notFound; } } /** * Sets the value of the notFound property. * * @param value * allowed object is * {@link JaxbHbmNotFoundEnum } * */ public void setNotFound(JaxbHbmNotFoundEnum value) { this.notFound = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy