Class JaxbPersistenceUnitMetadata
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.spi.JaxbPersistenceUnitMetadata
-
- All Implemented Interfaces:
java.io.Serializable
public class JaxbPersistenceUnitMetadata extends java.lang.Object implements java.io.SerializableMetadata that applies to the persistence unit and not just to the mapping file in which it is contained. If the xml-mapping-metadata-complete element is specified, the complete set of mapping metadata for the persistence unit is contained in the XML mapping files for the persistence unit.Java class for persistence-unit-metadata complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="persistence-unit-metadata"> <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="xml-mapping-metadata-complete" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}emptyType" minOccurs="0"/> <element name="persistence-unit-defaults" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}persistence-unit-defaults" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringdescriptionprotected JaxbPersistenceUnitDefaultspersistenceUnitDefaultsprotected JaxbEmptyTypexmlMappingMetadataComplete
-
Constructor Summary
Constructors Constructor Description JaxbPersistenceUnitMetadata()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Gets the value of the description property.JaxbPersistenceUnitDefaultsgetPersistenceUnitDefaults()Gets the value of the persistenceUnitDefaults property.JaxbEmptyTypegetXmlMappingMetadataComplete()Gets the value of the xmlMappingMetadataComplete property.voidsetDescription(java.lang.String value)Sets the value of the description property.voidsetPersistenceUnitDefaults(JaxbPersistenceUnitDefaults value)Sets the value of the persistenceUnitDefaults property.voidsetXmlMappingMetadataComplete(JaxbEmptyType value)Sets the value of the xmlMappingMetadataComplete property.
-
-
-
Field Detail
-
description
protected java.lang.String description
-
xmlMappingMetadataComplete
protected JaxbEmptyType xmlMappingMetadataComplete
-
persistenceUnitDefaults
protected JaxbPersistenceUnitDefaults persistenceUnitDefaults
-
-
Method Detail
-
getDescription
public java.lang.String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
public void setDescription(java.lang.String value)
Sets the value of the description property.- Parameters:
value- allowed object isString
-
getXmlMappingMetadataComplete
public JaxbEmptyType getXmlMappingMetadataComplete()
Gets the value of the xmlMappingMetadataComplete property.- Returns:
- possible object is
JaxbEmptyType
-
setXmlMappingMetadataComplete
public void setXmlMappingMetadataComplete(JaxbEmptyType value)
Sets the value of the xmlMappingMetadataComplete property.- Parameters:
value- allowed object isJaxbEmptyType
-
getPersistenceUnitDefaults
public JaxbPersistenceUnitDefaults getPersistenceUnitDefaults()
Gets the value of the persistenceUnitDefaults property.- Returns:
- possible object is
JaxbPersistenceUnitDefaults
-
setPersistenceUnitDefaults
public void setPersistenceUnitDefaults(JaxbPersistenceUnitDefaults value)
Sets the value of the persistenceUnitDefaults property.- Parameters:
value- allowed object isJaxbPersistenceUnitDefaults
-
-