org.hibernate.jpamodelgen.xml.jaxb
Class PersistenceUnitMetadata

java.lang.Object
  extended by org.hibernate.jpamodelgen.xml.jaxb.PersistenceUnitMetadata

public class PersistenceUnitMetadata
extends Object

Metadata 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://java.sun.com/xml/ns/persistence/orm}emptyType" minOccurs="0"/>
         <element name="persistence-unit-defaults" type="{http://java.sun.com/xml/ns/persistence/orm}persistence-unit-defaults" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  String description
           
protected  PersistenceUnitDefaults persistenceUnitDefaults
           
protected  EmptyType xmlMappingMetadataComplete
           
 
Constructor Summary
PersistenceUnitMetadata()
           
 
Method Summary
 String getDescription()
          Gets the value of the description property.
 PersistenceUnitDefaults getPersistenceUnitDefaults()
          Gets the value of the persistenceUnitDefaults property.
 EmptyType getXmlMappingMetadataComplete()
          Gets the value of the xmlMappingMetadataComplete property.
 void setDescription(String value)
          Sets the value of the description property.
 void setPersistenceUnitDefaults(PersistenceUnitDefaults value)
          Sets the value of the persistenceUnitDefaults property.
 void setXmlMappingMetadataComplete(EmptyType value)
          Sets the value of the xmlMappingMetadataComplete property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

description

protected String description

xmlMappingMetadataComplete

protected EmptyType xmlMappingMetadataComplete

persistenceUnitDefaults

protected PersistenceUnitDefaults persistenceUnitDefaults
Constructor Detail

PersistenceUnitMetadata

public PersistenceUnitMetadata()
Method Detail

getDescription

public String getDescription()
Gets the value of the description property.

Returns:
possible object is String

setDescription

public void setDescription(String value)
Sets the value of the description property.

Parameters:
value - allowed object is String

getXmlMappingMetadataComplete

public EmptyType getXmlMappingMetadataComplete()
Gets the value of the xmlMappingMetadataComplete property.

Returns:
possible object is EmptyType

setXmlMappingMetadataComplete

public void setXmlMappingMetadataComplete(EmptyType value)
Sets the value of the xmlMappingMetadataComplete property.

Parameters:
value - allowed object is EmptyType

getPersistenceUnitDefaults

public PersistenceUnitDefaults getPersistenceUnitDefaults()
Gets the value of the persistenceUnitDefaults property.

Returns:
possible object is PersistenceUnitDefaults

setPersistenceUnitDefaults

public void setPersistenceUnitDefaults(PersistenceUnitDefaults value)
Sets the value of the persistenceUnitDefaults property.

Parameters:
value - allowed object is PersistenceUnitDefaults


Copyright © 2009-2010. All Rights Reserved.