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

org.hibernate.boot.jaxb.mapping.spi.JaxbPersistenceUnitDefaults 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: 2021.12.16 at 08:34:01 AM UTC 
//


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

import java.io.Serializable;
import javax.persistence.AccessType;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 
 * 
 *                 These defaults are applied to the persistence unit as a whole
 *                 unless they are overridden by local annotation or XML
 *                 element settings.
 * 
 *                 schema - Used as the schema for all tables, secondary tables, join
 *                 tables, collection tables, sequence generators, and table
 *                 generators that apply to the persistence unit
 *                 catalog - Used as the catalog for all tables, secondary tables, join
 *                 tables, collection tables, sequence generators, and table
 *                 generators that apply to the persistence unit
 *                 delimited-identifiers - Used to treat database identifiers as
 *                 delimited identifiers.
 *                 access - Used as the access type for all managed classes in
 *                 the persistence unit
 *                 cascade-persist - Adds cascade-persist to the set of cascade options
 *                 in all entity relationships of the persistence unit
 *                 entity-listeners - List of default entity listeners to be invoked
 *                 on each entity in the persistence unit.
 *             
 * 
 * 

Java class for persistence-unit-defaults complex type. * *

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

 * <complexType name="persistence-unit-defaults">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="delimited-identifiers" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}emptyType" minOccurs="0"/>
 *         <element name="access" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}access-type" minOccurs="0"/>
 *         <element name="cascade-persist" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}emptyType" minOccurs="0"/>
 *         <element name="entity-listeners" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}entity-listeners" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "persistence-unit-defaults", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", propOrder = { "description", "schema", "catalog", "delimitedIdentifiers", "access", "cascadePersist", "entityListeners" }) public class JaxbPersistenceUnitDefaults implements Serializable { @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected String description; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected String schema; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected String catalog; @XmlElement(name = "delimited-identifiers", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbEmptyType delimitedIdentifiers; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "token") protected AccessType access; @XmlElement(name = "cascade-persist", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbEmptyType cascadePersist; @XmlElement(name = "entity-listeners", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbEntityListeners entityListeners; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the schema property. * * @return * possible object is * {@link String } * */ public String getSchema() { return schema; } /** * Sets the value of the schema property. * * @param value * allowed object is * {@link String } * */ public void setSchema(String value) { this.schema = value; } /** * Gets the value of the catalog property. * * @return * possible object is * {@link String } * */ public String getCatalog() { return catalog; } /** * Sets the value of the catalog property. * * @param value * allowed object is * {@link String } * */ public void setCatalog(String value) { this.catalog = value; } /** * Gets the value of the delimitedIdentifiers property. * * @return * possible object is * {@link JaxbEmptyType } * */ public JaxbEmptyType getDelimitedIdentifiers() { return delimitedIdentifiers; } /** * Sets the value of the delimitedIdentifiers property. * * @param value * allowed object is * {@link JaxbEmptyType } * */ public void setDelimitedIdentifiers(JaxbEmptyType value) { this.delimitedIdentifiers = value; } /** * Gets the value of the access property. * * @return * possible object is * {@link String } * */ public AccessType getAccess() { return access; } /** * Sets the value of the access property. * * @param value * allowed object is * {@link String } * */ public void setAccess(AccessType value) { this.access = value; } /** * Gets the value of the cascadePersist property. * * @return * possible object is * {@link JaxbEmptyType } * */ public JaxbEmptyType getCascadePersist() { return cascadePersist; } /** * Sets the value of the cascadePersist property. * * @param value * allowed object is * {@link JaxbEmptyType } * */ public void setCascadePersist(JaxbEmptyType value) { this.cascadePersist = value; } /** * Gets the value of the entityListeners property. * * @return * possible object is * {@link JaxbEntityListeners } * */ public JaxbEntityListeners getEntityListeners() { return entityListeners; } /** * Sets the value of the entityListeners property. * * @param value * allowed object is * {@link JaxbEntityListeners } * */ public void setEntityListeners(JaxbEntityListeners value) { this.entityListeners = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy