Class JaxbEmbeddableImpl

java.lang.Object
org.hibernate.boot.jaxb.mapping.spi.JaxbEmbeddableImpl
All Implemented Interfaces:
Serializable, JaxbEmbeddable, JaxbManagedType

public class JaxbEmbeddableImpl extends Object implements Serializable, JaxbEmbeddable
See `@jakarta.persistence.Embeddable`

Java class for embeddable complex type

.

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


 <complexType name="embeddable">
   <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="attributes" type="{http://www.hibernate.org/xsd/orm/mapping}embeddable-attributes" minOccurs="0"/>
       </sequence>
       <attribute name="class" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="instantiator" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="access" type="{http://www.hibernate.org/xsd/orm/mapping}access-type" />
       <attribute name="metadata-complete" type="{http://www.w3.org/2001/XMLSchema}boolean" />
     </restriction>
   </complexContent>
 </complexType>
 
See Also: