Package org.hibernate.boot.jaxb.mapping
Interface AttributesContainer
-
- All Known Implementing Classes:
JaxbAttributes
,JaxbEmbeddableAttributes
public interface AttributesContainer
JAXB binding interface for commonality between things which contain attributes.- API Note:
- In the mapping XSD, this equates to the `attributes` and `embeddable-attributes` nodes rather than the ManagedTypes themselves.
-
-
Method Summary
-
-
-
Method Detail
-
getEmbeddedAttributes
List<JaxbEmbedded> getEmbeddedAttributes()
-
getOneToOneAttributes
List<JaxbOneToOne> getOneToOneAttributes()
-
getManyToOneAttributes
List<JaxbManyToOne> getManyToOneAttributes()
-
getDiscriminatedAssociations
List<JaxbHbmAnyMapping> getDiscriminatedAssociations()
-
getElementCollectionAttributes
List<JaxbElementCollection> getElementCollectionAttributes()
-
getOneToManyAttributes
List<JaxbOneToMany> getOneToManyAttributes()
-
getManyToManyAttributes
List<JaxbManyToMany> getManyToManyAttributes()
-
getPluralDiscriminatedAssociations
List<JaxbHbmManyToAny> getPluralDiscriminatedAssociations()
-
getTransients
List<JaxbTransient> getTransients()
-
-