org.hibernate.jpamodelgen.xml.jaxb.PersistenceUnitDefaults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-jpamodelgen Show documentation
Show all versions of hibernate-jpamodelgen Show documentation
Annotation Processor to generate JPA 2 static metamodel classes
package org.hibernate.jpamodelgen.xml.jaxb;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
*
*
* 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.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "persistence-unit-defaults", namespace = "https://jakarta.ee/xml/ns/persistence/orm", propOrder = {
"description",
"schema",
"catalog",
"delimitedIdentifiers",
"access",
"cascadePersist",
"entityListeners"
})
public class PersistenceUnitDefaults {
@XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm")
protected String description;
@XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm")
protected String schema;
@XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm")
protected String catalog;
@XmlElement(name = "delimited-identifiers", namespace = "https://jakarta.ee/xml/ns/persistence/orm")
protected EmptyType delimitedIdentifiers;
@XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm")
@XmlSchemaType(name = "token")
protected AccessType access;
@XmlElement(name = "cascade-persist", namespace = "https://jakarta.ee/xml/ns/persistence/orm")
protected EmptyType cascadePersist;
@XmlElement(name = "entity-listeners", namespace = "https://jakarta.ee/xml/ns/persistence/orm")
protected EntityListeners 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 EmptyType }
*
*/
public EmptyType getDelimitedIdentifiers() {
return delimitedIdentifiers;
}
/**
* Sets the value of the delimitedIdentifiers property.
*
* @param value
* allowed object is
* {@link EmptyType }
*
*/
public void setDelimitedIdentifiers(EmptyType value) {
this.delimitedIdentifiers = value;
}
/**
* Gets the value of the access property.
*
* @return
* possible object is
* {@link AccessType }
*
*/
public AccessType getAccess() {
return access;
}
/**
* Sets the value of the access property.
*
* @param value
* allowed object is
* {@link AccessType }
*
*/
public void setAccess(AccessType value) {
this.access = value;
}
/**
* Gets the value of the cascadePersist property.
*
* @return
* possible object is
* {@link EmptyType }
*
*/
public EmptyType getCascadePersist() {
return cascadePersist;
}
/**
* Sets the value of the cascadePersist property.
*
* @param value
* allowed object is
* {@link EmptyType }
*
*/
public void setCascadePersist(EmptyType value) {
this.cascadePersist = value;
}
/**
* Gets the value of the entityListeners property.
*
* @return
* possible object is
* {@link EntityListeners }
*
*/
public EntityListeners getEntityListeners() {
return entityListeners;
}
/**
* Sets the value of the entityListeners property.
*
* @param value
* allowed object is
* {@link EntityListeners }
*
*/
public void setEntityListeners(EntityListeners value) {
this.entityListeners = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy